@@ -8,15 +8,18 @@ on: [push, pull_request]
8
8
jobs :
9
9
10
10
lint :
11
+ # runs-on: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
11
12
runs-on : ubuntu-latest
12
13
strategy :
13
14
matrix :
14
- php-versions : ['7.3', '7. 4', '8.0']
15
+ php-versions : ['7.4', '8.0']
15
16
name : lint (${{ matrix.php-versions }})
16
17
env :
17
18
extensions : zip
18
- key : cache-v1
19
+ key : cache-v1
19
20
steps :
21
+ - name : Change dir owner to working user
22
+ run : sudo chown -R $USER:$USER $GITHUB_WORKSPACE
20
23
- uses : actions/checkout@v1
21
24
- name : Setup cache environment
22
25
id : extcache
35
38
36
39
- name : Setup PHP
37
40
uses : shivammathur/setup-php@v2
41
+ env :
42
+ # runner: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
43
+ runner : ubuntu-latest
38
44
with :
39
45
php-version : ${{ matrix.php-versions }}
40
46
extensions : ${{ env.extensions }}
@@ -43,26 +49,51 @@ jobs:
43
49
uses : actions/cache@v2
44
50
with :
45
51
path : /tmp/composer-cache
46
- key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
47
- - uses : php-actions/composer@v5
48
- with :
49
- php_version : 7.4
50
- - name : Lint
51
- run : php vendor/bin/robo --no-interaction code:cs
52
+ key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
53
+ - name : Install dependencies
54
+ run : composer install
55
+ - name : Check for coding standards violations
56
+ run : |
57
+ vendor/bin/phpcs -d memory_limit=512M -p --extensions=php --standard=vendor/glpi-project/coding-standard/GlpiStandard/ --ignore="/.git/,/lib/,/vendor/" .
52
58
53
59
phpunit :
60
+ # runs-on: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
54
61
runs-on : ubuntu-latest
55
62
strategy :
56
63
matrix :
57
- php-versions : ['7.3', '7.4', '8.0']
58
- name : phpunit (${{ matrix.php-versions }})
64
+ php-versions : ['7.4', '8.0']
65
+ db-image : ['mysql:5.7', 'mysql:8.0', 'mariadb:10.2', 'mariadb:10.6']
66
+ name : Unit tests ${{ matrix.php-versions }} ${{ matrix.db-image }}
59
67
env :
60
68
extensions : zip, hash, fileinfo, mysqli, gd, bz2, xdebug
61
69
key : cache-v1
70
+ DB : ${{ matrix.db-image }}
71
+
72
+ services :
73
+ # Label used to access the service container
74
+ db :
75
+ # Docker Hub image
76
+ image : ${{ matrix.db-image }}
77
+ # Provide env variables for both mysql and pgsql
78
+ env :
79
+ MYSQL_USER : glpiinventory
80
+ MYSQL_PASSWORD : glpi1iventory
81
+ MYSQL_ROOT_PASSWORD : glpi1iventory
82
+ MYSQL_DATABASE : glpi
83
+ # Open network ports
84
+ ports :
85
+ - 3306:3306
86
+ # Set health checks to wait until postgres has started
87
+ options : >-
88
+ --health-cmd="bash -c 'mysqladmin ping'"
89
+ --health-interval=10s
90
+ --health-timeout=5s
91
+ --health-retries=10
62
92
steps :
63
- - uses : ankane/setup-mariadb@v1
64
- with :
65
- mariadb-version : 10.5
93
+ - name : Install gettext, npm and mysql-client
94
+ run : sudo apt-get install --assume-yes --no-install-recommends --quiet gettext npm mysql-client
95
+ - name : Change dir owner to working user
96
+ run : sudo chown -R $USER:$USER $GITHUB_WORKSPACE
66
97
- uses : actions/checkout@v1
67
98
- name : Setup cache environment
68
99
id : extcache
@@ -81,33 +112,42 @@ jobs:
81
112
82
113
- name : Setup PHP
83
114
uses : shivammathur/setup-php@v2
115
+ env :
116
+ # runner: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
117
+ runner : ubuntu-latest
84
118
with :
85
119
php-version : ${{ matrix.php-versions }}
86
120
extensions : ${{ env.extensions }}
87
-
88
121
- name : Cache Composer dependencies
89
122
uses : actions/cache@v2
90
123
with :
91
124
path : /tmp/composer-cache
92
- key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
93
- - uses : php-actions/composer@v5
125
+ key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
126
+ - name : Install dependencies
127
+ run : composer install
128
+ - name : Checkout GLPI
129
+ uses : actions/checkout@v2
94
130
with :
95
- php_version : 7.4
96
- - name : Get GLPI
97
- run : wget https://github.com/glpi-project/glpi/releases/download/9.5.3/glpi-9.5.3.tgz
98
- - name : Uncompress GLPI
99
- run : tar zxvf glpi-9.5.3.tgz
100
- - name : Copy Plugin FusionInventory
101
- run : rsync -avr --exclude='glpi' ./* glpi/plugins/fusioninventory/
102
- - name : Create the database
103
- run : mysqladmin create glpi
104
- - name : Check php dependencies
105
- run : cd glpi && php bin/console glpi:system:check_requirements
131
+ repository : glpi-project/glpi
132
+ path : glpi
133
+ fetch-depth : 1
134
+ ref : master
135
+ - name : Copy plugin
136
+ run : rsync -avr --exclude='glpi' ./* glpi/plugins/glpiinventory/
137
+ - name : Install dependencies
138
+ run : |
139
+ cd glpi
140
+ php bin/console dependencies install
141
+ php bin/console locales:compile
142
+
143
+ - name : Init database
144
+ run : |
145
+ mysql -e 'create database IF NOT EXISTS glpi;' -u root --password=glpi1iventory -h 127.0.0.1 -P 3306
106
146
- name : Install GLPI
107
- run : cd glpi && mkdir tests && php bin/console glpi:database:install -n --config-dir=tests --db-name=glpi --db-user=root
108
- - name : Install plugin FusionInventory
109
- run : cd glpi && php bin/console glpi:plugin:install -vvv -n --config-dir=tests --username=glpi fusioninventory
110
- - name : Activate plugin FusionInventory
111
- run : cd glpi && php bin/console glpi:plugin:activate -n --config-dir=tests fusioninventory
147
+ run : cd glpi && php bin/console glpi:database:install -n --ansi -- config-dir=tests/config --db-host=127.0.0.1 --db- name=glpi --db-user=root --db-password=glpi1iventory --db-port=3306
148
+ - name : Install plugin
149
+ run : cd glpi && php bin/console glpi:plugin:install -vvv -n --ansi -- config-dir=tests/config --username=glpi glpiinventory
150
+ - name : Activate plugin
151
+ run : cd glpi && php bin/console glpi:plugin:activate -n --ansi -- config-dir=tests/config glpiinventory
112
152
- name : run tests
113
- run : cd glpi/plugins/fusioninventory / && php vendor/bin/phpunit --testdox tests/
153
+ run : cd glpi/plugins/glpiinventory / && php vendor/bin/phpunit --testdox --colors=always tests/
0 commit comments