Skip to content

Commit e5f7882

Browse files
authored
Merge pull request #302 from embulk/remove-db2-and-oracle
Remove embulk-output-db2 and embulk-output-oracle
2 parents 6d6fb16 + 03bfe82 commit e5f7882

File tree

141 files changed

+0
-25358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+0
-25358
lines changed

Diff for: .github/workflows/build.yml

-48
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,6 @@
11
name: Build and test
22
on: push
33
jobs:
4-
db2: # https://hub.docker.com/r/ibmcom/db2
5-
runs-on: ubuntu-latest
6-
services:
7-
db2:
8-
# To run local:
9-
# docker run -it --privileged=true --name db2container -p 50000:50000 -p 55000:55000 -e LICENSE=accept -e DB2INSTANCE=db2inst1 -e DB2INST1_PASSWORD=password -e DBNAME=testdb -e SAMPLEDB=true ibmcom/db2:11.5.0.0a
10-
image: docker://ibmcom/db2:11.5.0.0a
11-
options: --name "db2container" --privileged=true --health-cmd "su - db2inst1 -c \"db2 GET DBM CFG\"" --health-interval 20s --health-timeout 30s --health-retries 128
12-
ports:
13-
- "50000:50000"
14-
- "55000:55000"
15-
env:
16-
LICENSE: accept
17-
DB2INSTANCE: db2inst1
18-
DB2INST1_PASSWORD: password
19-
DBNAME: testdb
20-
SAMPLEDB: true
21-
steps:
22-
- uses: actions/checkout@v2
23-
- name: Set up JDK 8
24-
uses: actions/setup-java@v2
25-
with:
26-
java-version: 8
27-
distribution: 'zulu'
28-
- name: Sleep for 3 minutes to complete all the DB2 setup process
29-
run: sleep 180
30-
- name: List Docker containers
31-
run: docker ps -a
32-
- name: Show Docker logs
33-
run: docker logs db2container
34-
- name: Show DB2 configs
35-
run: docker exec db2container su - db2inst1 -c "db2 \"GET DBM CFG\""
36-
- name: Build with testing
37-
run: ./gradlew --stacktrace :embulk-output-db2:check
38-
env:
39-
_JAVA_OPTIONS: "-Xmx2048m -Xms512m"
40-
EMBULK_OUTPUT_DB2_TEST_CONFIG: "${{ github.workspace }}/ci/db2.yml"
41-
- uses: actions/upload-artifact@v2
42-
if: always()
43-
with:
44-
name: db2
45-
path: embulk-output-db2/build/reports/tests/test
464
mysql:
475
strategy:
486
fail-fast: false
@@ -78,12 +36,6 @@ jobs:
7836
with:
7937
name: mysql
8038
path: embulk-output-mysql/build/reports/tests/test
81-
oracle: # https://hub.docker.com/_/oracle-database-enterprise-edition
82-
runs-on: ubuntu-latest
83-
steps:
84-
- uses: actions/checkout@v2
85-
- name: Test for Oracle Database does not run on GitHub Actions.
86-
run: echo "Test for Oracle Database does not run on GitHub Actions."
8739
postgresql:
8840
runs-on: ubuntu-latest
8941
services:

Diff for: README.md

-9
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ See [embulk-output-mysql](embulk-output-mysql/).
1212

1313
See [embulk-output-postgresql](embulk-output-postgresql/).
1414

15-
## Oracle
16-
17-
See [embulk-output-oracle](embulk-output-oracle/).
18-
1915
## Redshift
2016

2117
See [embulk-output-redshift](embulk-output-redshift/).
@@ -24,11 +20,6 @@ See [embulk-output-redshift](embulk-output-redshift/).
2420

2521
See [embulk-output-sqlserver](embulk-output-sqlserver/).
2622

27-
## DB2
28-
29-
See [embulk-output-db2](embulk-output-db2/).
30-
3123
## Others (generic JDBC)
3224

3325
See [embulk-output-jdbc](embulk-output-jdbc/).
34-

Diff for: ci/db2.yml

-6
This file was deleted.

Diff for: embulk-output-db2/README.md

-127
This file was deleted.

Diff for: embulk-output-db2/build.gradle

-23
This file was deleted.

Diff for: embulk-output-db2/gradle/dependency-locks/embulkPluginRuntime.lockfile

-13
This file was deleted.

Diff for: embulk-output-db2/out/test/org/embulk/output/db2/test/expect/basic/test_replace.yml

-2
This file was deleted.

Diff for: embulk-output-db2/src/main/java/org/embulk/output/DB2OutputPlugin.java

-95
This file was deleted.

Diff for: embulk-output-db2/src/main/java/org/embulk/output/db2/DB2BatchInsert.java

-33
This file was deleted.

0 commit comments

Comments
 (0)