Skip to content

Commit eacfade

Browse files
committed
oracle does not work in GH at the moment
1 parent 40d2eba commit eacfade

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.github/workflows/dotnetpull.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ jobs:
3737
--health-timeout=5s
3838
--health-retries=5
3939
40-
oracle:
41-
image: gvenzl/oracle-xe:21.3.0-slim
42-
ports:
43-
- 1521:1521
44-
env:
45-
ORACLE_PASSWORD: testpass
46-
options: >-
47-
--health-cmd "echo 'exit' | sqlplus -L system/oracle@localhost/XEPDB1"
48-
--health-interval=15s
49-
--health-timeout=10s
50-
--health-retries=10
40+
# oracle:
41+
# image: gvenzl/oracle-xe:21.3.0-slim
42+
# ports:
43+
# - 1521:1521
44+
# env:
45+
# ORACLE_PASSWORD: testpass
46+
# options: >-
47+
# --health-cmd "echo 'exit' | sqlplus -L system/oracle@localhost/XEPDB1"
48+
# --health-interval=15s
49+
# --health-timeout=10s
50+
# --health-retries=10
5151

5252
mysql:
5353
image: mysql:8.0
@@ -90,12 +90,12 @@ jobs:
9090
sudo mv instantclient_* /opt/oracle/instantclient
9191
export LD_LIBRARY_PATH=/opt/oracle/instantclient
9292
export PATH=$PATH:/opt/oracle/instantclient
93-
- name: Create Oracle schema
94-
run: |
95-
echo "CREATE USER test IDENTIFIED BY test DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp QUOTA UNLIMITED ON users;" |
96-
sqlplus -L system/oracle@//localhost:1521/XEPDB1
97-
echo "GRANT CONNECT, RESOURCE TO test;" |
98-
sqlplus -L system/oracle@//localhost:1521/XEPDB1
93+
# - name: Create Oracle schema
94+
# run: |
95+
# echo "CREATE USER test IDENTIFIED BY test DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp QUOTA UNLIMITED ON users;" |
96+
# sqlplus -L system/oracle@//localhost:1521/XEPDB1
97+
# echo "GRANT CONNECT, RESOURCE TO test;" |
98+
# sqlplus -L system/oracle@//localhost:1521/XEPDB1
9999
- name: Create SQLServer database
100100
run: |
101101
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'YourStrong@Passw0rd' -Q "CREATE DATABASE [Whatever];"

src/Migrator.Tests/appsettings.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"Id": "PostgreSQL",
1313
"ConnectionString": "Server=localhost;Port=5432;Database=testdb;User Id=testuser;Password=testpass;"
1414
},
15-
{
16-
"Id": "Oracle",
17-
"ConnectionString": "Data Source=//localhost:1521/XEPDB1;User Id=test;Password=test;"
18-
},
15+
//{
16+
// "Id": "Oracle",
17+
// "ConnectionString": "Data Source=//localhost:1521/XEPDB1;User Id=test;Password=test;"
18+
//},
1919
{
2020
"Id": "MySQL",
2121
"ConnectionString": "Server=127.0.0.1;Port=3306;Database=testdb;User Id=testuser;Password=testpass;"

0 commit comments

Comments
 (0)