File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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
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;
You can’t perform that action at this time.
0 commit comments