Skip to content

Commit

Permalink
prune some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Sep 12, 2023
1 parent 43852dc commit 3ea6ce3
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
82 changes: 82 additions & 0 deletions ci/workflows/main-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -369,3 +369,85 @@ steps:
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 21
retry: *auto-retry

- label: "end-to-end test for opendal (parallel)"
command: "ci/scripts/e2e-test-parallel-for-opendal.sh -p ci-release"
depends_on:
- "build"
- "docslt"
plugins:
- docker-compose#v4.9.0:
run: rw-build-env
config: ci/docker-compose.yml
mount-buildkite-agent: true
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 14
retry: *auto-retry

- label: "end-to-end test (parallel, in-memory)"
command: "ci/scripts/e2e-test-parallel-in-memory.sh -p ci-release"
depends_on: "build"
plugins:
- docker-compose#v4.9.0:
run: rw-build-env
config: ci/docker-compose.yml
mount-buildkite-agent: true
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 12
retry: *auto-retry

- label: "end-to-end iceberg sink test"
command: "ci/scripts/e2e-iceberg-sink-test.sh -p ci-release"
depends_on:
- "build"
- "build-other"
plugins:
- docker-compose#v4.9.0:
run: rw-build-env
config: ci/docker-compose.yml
mount-buildkite-agent: true
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 5
retry: *auto-retry

- label: "end-to-end iceberg sink v2 test"
command: "ci/scripts/e2e-iceberg-sink-v2-test.sh -p ci-release"
depends_on:
- "build"
- "build-other"
plugins:
- docker-compose#v4.9.0:
run: sink-test-env
config: ci/docker-compose.yml
mount-buildkite-agent: true
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 10
retry: *auto-retry

- label: "end-to-end clickhouse sink test"
command: "ci/scripts/e2e-clickhouse-sink-test.sh -p ci-release"
depends_on:
- "build"
- "build-other"
plugins:
- docker-compose#v4.9.0:
run: sink-test-env
config: ci/docker-compose.yml
mount-buildkite-agent: true
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 10
retry: *auto-retry

- label: "e2e java-binding test"
command: "ci/scripts/java-binding-test.sh -p ci-release"
depends_on:
- "build"
- "build-other"
plugins:
- docker-compose#v4.9.0:
run: rw-build-env
config: ci/docker-compose.yml
mount-buildkite-agent: true
- ./ci/plugins/upload-failure-logs
timeout_in_minutes: 10
retry: *auto-retry
6 changes: 6 additions & 0 deletions ci/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ steps:
retry: *auto-retry

- label: "end-to-end test for opendal (parallel)"
if: build.pull_request.labels includes "ci/run-opendal-tests"
command: "ci/scripts/e2e-test-parallel-for-opendal.sh -p ci-dev"
depends_on:
- "build"
Expand All @@ -109,6 +110,7 @@ steps:
retry: *auto-retry

- label: "end-to-end test (parallel, in-memory)"
if: build.pull_request.labels includes "ci/run-e2e-parallel-in-memory-tests"
command: "ci/scripts/e2e-test-parallel-in-memory.sh -p ci-dev"
depends_on: "build"
plugins:
Expand Down Expand Up @@ -169,6 +171,7 @@ steps:
retry: *auto-retry

- label: "end-to-end iceberg sink test"
if: build.pull_request.labels includes "ci/run-e2e-iceberg-sink-tests"
command: "ci/scripts/e2e-iceberg-sink-test.sh -p ci-dev"
depends_on:
- "build"
Expand All @@ -183,6 +186,7 @@ steps:
retry: *auto-retry

- label: "end-to-end iceberg sink v2 test"
if: build.pull_request.labels includes "ci/run-e2e-iceberg-sink-tests"
command: "ci/scripts/e2e-iceberg-sink-v2-test.sh -p ci-dev"
depends_on:
- "build"
Expand All @@ -197,6 +201,7 @@ steps:
retry: *auto-retry

- label: "end-to-end clickhouse sink test"
if: build.pull_request.labels includes "ci/run-e2e-clickhouse-sink-tests"
command: "ci/scripts/e2e-clickhouse-sink-test.sh -p ci-dev"
depends_on:
- "build"
Expand All @@ -211,6 +216,7 @@ steps:
retry: *auto-retry

- label: "e2e java-binding test"
if: build.pull_request.labels includes "ci/run-java-binding-tests"
command: "ci/scripts/java-binding-test.sh -p ci-dev"
depends_on:
- "build"
Expand Down

0 comments on commit 3ea6ce3

Please sign in to comment.