File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -352,10 +352,10 @@ jobs:
352
352
strategy :
353
353
matrix :
354
354
python-version :
355
- # - '3.7'
355
+ - ' 3.7'
356
356
- ' 3.11'
357
357
django-version :
358
- # - 'Django~=3.2.0' # LTS April 2024
358
+ - ' Django~=3.2.0' # LTS April 2024
359
359
- ' Django~=4.2.0' # LTS April 2026
360
360
exclude :
361
361
- python-version : ' 3.7'
@@ -389,18 +389,18 @@ jobs:
389
389
with :
390
390
python-version : ${{ matrix.python-version }}
391
391
env :
392
- IGNORE_ORA_01843 : True
392
+ IGNORE_ORA_01843 : False
393
393
- name : Install Poetry
394
394
uses : snok/install-poetry@v1
395
395
with :
396
396
virtualenvs-create : true
397
397
virtualenvs-in-project : true
398
398
- name : Install Oracle Client
399
399
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
401
401
sudo apt install alien libaio1
402
402
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'
404
404
sudo ldconfig
405
405
- name : Install Dependencies
406
406
run : |
@@ -411,3 +411,6 @@ jobs:
411
411
- name : Run Full Unit Tests
412
412
run : |
413
413
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'
You can’t perform that action at this time.
0 commit comments