Skip to content

Commit 68ace33

Browse files
committed
downgrade oracle instant client
1 parent 646f135 commit 68ace33

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,10 @@ jobs:
352352
strategy:
353353
matrix:
354354
python-version:
355-
#- '3.7'
355+
- '3.7'
356356
- '3.11'
357357
django-version:
358-
#- 'Django~=3.2.0' # LTS April 2024
358+
- 'Django~=3.2.0' # LTS April 2024
359359
- 'Django~=4.2.0' # LTS April 2026
360360
exclude:
361361
- python-version: '3.7'
@@ -389,18 +389,18 @@ jobs:
389389
with:
390390
python-version: ${{ matrix.python-version }}
391391
env:
392-
IGNORE_ORA_01843: True
392+
IGNORE_ORA_01843: False
393393
- name: Install Poetry
394394
uses: snok/install-poetry@v1
395395
with:
396396
virtualenvs-create: true
397397
virtualenvs-in-project: true
398398
- name: Install Oracle Client
399399
run: |
400-
curl --output oracle-client.rpm https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
400+
curl --output oracle-client.rpm https://download.oracle.com/otn_software/linux/instantclient/1919000/oracle-instantclient19.19-basiclite-19.19.0.0.0-1.x86_64.rpm
401401
sudo apt install alien libaio1
402402
sudo alien -i oracle-client.rpm
403-
sudo sh -c 'echo /usr/lib/oracle/21/client64/lib/ > /etc/ld.so.conf.d/oracle.conf'
403+
sudo sh -c 'echo /usr/lib/oracle/19/client64/lib/ > /etc/ld.so.conf.d/oracle.conf'
404404
sudo ldconfig
405405
- name: Install Dependencies
406406
run: |
@@ -411,3 +411,6 @@ jobs:
411411
- name: Run Full Unit Tests
412412
run: |
413413
poetry run pytest -s
414+
415+
#curl --output oracle-client.rpm https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
416+
#sudo sh -c 'echo /usr/lib/oracle/21/client64/lib/ > /etc/ld.so.conf.d/oracle.conf'

0 commit comments

Comments
 (0)