File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 8
8
version : ['7.3', '7.4', '8.0', '8.1']
9
9
runs-on : ubuntu-latest
10
10
steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
11
13
- name : Cache DB2 library
12
14
id : cache-clidriver
13
15
uses : actions/cache@v2
@@ -17,19 +19,15 @@ jobs:
17
19
- name : Install DB2 library
18
20
if : steps.cache-clidriver.outputs.cache-hit != 'true'
19
21
run : |
20
- pwd
21
22
wget https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxx64_odbc_cli.tar.gz
22
23
tar xvzf linuxx64_odbc_cli.tar.gz
23
- - name : Checkout
24
- uses : actions/checkout@v2
25
24
- name : Setup PHP
26
25
uses : shivammathur/setup-php@v2
27
26
with :
28
27
php-version : ${{matrix.version}}
29
28
extensions : pdo
30
29
- name : Build PDO_IBM
31
30
run : |
32
- pwd
33
31
phpize
34
32
./configure --with-pdo-ibm=$PWD/clidriver
35
33
make
You can’t perform that action at this time.
0 commit comments