Skip to content

Commit

Permalink
Work on build
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbj committed Aug 22, 2024
1 parent 196a1e4 commit b91703d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
version: ['8.3']
runs-on: ubuntu-latest
steps:
- name: Setup Instantclient and SDK
- name: Setup Oracle Instant Client
run: |
curl -O https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
curl -O https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
Expand All @@ -16,9 +16,9 @@ jobs:
mv instantclient_* instantclient
- name: Show directory structure
run: |
echo ${{github.workspace}}
cd ${{github.workspace}}/instantclient
pwd
tree instantclient
tree
- name: Checkout pdo_oci
uses: actions/checkout@v4
- name: Setup PHP
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build pdo_oci
run: |
phpize
./configure --with-pdo-oci=instantclient,${{github.workspace}}/instantclient
./configure --with-pdo-oci=shared,instantclient,${{github.workspace}}/instantclient
make install
# echo "extension=pdo_oci.so" >> /wherever/php.ini
# - name: Test pdo_oci
Expand Down

0 comments on commit b91703d

Please sign in to comment.