Skip to content

Commit 69b2669

Browse files
committed
add sqlplus package
1 parent 07240f6 commit 69b2669

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/run-tests.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ jobs:
2929
- name: Install Oracle Instant Client
3030
run: |
3131
cd $RUNNER_TEMP
32-
# Download the desired Oracle Instant Client zip files
32+
# Download the desired Oracle Instant Client zip files and SQL*Plus packages
3333
curl -sSfLO "https://download.oracle.com/otn_software/linux/instantclient/2390000/instantclient-basic-linux.x64-23.9.0.25.07.zip"
34+
curl -sSfLO "https://download.oracle.com/otn_software/linux/instantclient/2390000/instantclient-sqlplus-linux.x64-23.9.0.25.07.zip"
3435
# Unzip the packages into a single directory
3536
unzip -q -o "instantclient-basic-linux.x64-23.9.0.25.07.zip"
37+
unzip -q -o "instantclient-sqlplus-linux.x64-23.9.0.25.07.zip"
3638
# Install the operating system libaio package
3739
sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/libaio.so.1
3840
# Update the runtime link path
@@ -59,7 +61,7 @@ jobs:
5961
SYS_PASS=$(docker logs $CONTAINER_ID 2>&1 | grep "DATABASE IS READY TO USE!" -B20 | grep "SYS Password:" | awk '{print $3}')
6062
echo "SYS_PASS=$SYS_PASS" >> $GITHUB_ENV
6163
62-
- name: Create tablespace and grant user access
64+
- name: Alter user quota on tablespace SYSAUX
6365
run: |
6466
cat <<'EOF' > alter_user.sql
6567
ALTER USER $GORM_ORACLEDB_USER QUOTA UNLIMITED ON SYSAUX;

0 commit comments

Comments
 (0)