Skip to content

Commit 40eacd1

Browse files
committed
Checkout deletes the entire working tree.... including the guy we downloaded
1 parent a2e1375 commit 40eacd1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
version: ['7.3', '7.4', '8.0', '8.1']
99
runs-on: ubuntu-latest
1010
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v2
1113
- name: Cache DB2 library
1214
id: cache-clidriver
1315
uses: actions/cache@v2
@@ -17,19 +19,15 @@ jobs:
1719
- name: Install DB2 library
1820
if: steps.cache-clidriver.outputs.cache-hit != 'true'
1921
run: |
20-
pwd
2122
wget https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxx64_odbc_cli.tar.gz
2223
tar xvzf linuxx64_odbc_cli.tar.gz
23-
- name: Checkout
24-
uses: actions/checkout@v2
2524
- name: Setup PHP
2625
uses: shivammathur/setup-php@v2
2726
with:
2827
php-version: ${{matrix.version}}
2928
extensions: pdo
3029
- name: Build PDO_IBM
3130
run: |
32-
pwd
3331
phpize
3432
./configure --with-pdo-ibm=$PWD/clidriver
3533
make

0 commit comments

Comments
 (0)