Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/revised-its.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
it: [HighAvailability, MultiStageQuery, Catalog, BatchIndex, MultiStageQueryWithMM, InputSource, InputFormat]
#indexer: [indexer, middleManager]
indexer: [middleManager]
uses: apache/druid/.github/workflows/reusable-revised-its.yml@master
uses: ./.github/workflows/reusable-revised-its.yml
with:
build_jdk: ${{ matrix.jdk }}
runtime_jdk: ${{ matrix.jdk }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/standard-its.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
jdk: [8, 11]
testing_group: [batch-index, input-format, input-source, perfect-rollup-parallel-batch-index, kafka-index, kafka-index-slow, kafka-transactional-index, kafka-transactional-index-slow, kafka-data-format, ldap-security, realtime-index, append-ingestion, compaction]
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: ${{ matrix.jdk }}
Expand All @@ -38,7 +38,7 @@ jobs:
matrix:
jdk: [8, 11]
testing_group: [input-source, perfect-rollup-parallel-batch-index, kafka-index, kafka-transactional-index, kafka-index-slow, kafka-transactional-index-slow, kafka-data-format, append-ingestion, compaction]
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: ${{ matrix.jdk }}
Expand All @@ -52,7 +52,7 @@ jobs:
matrix:
jdk: [8, 11]
testing_group: [query, query-retry, query-error, security, high-availability]
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: ${{ matrix.jdk }}
Expand All @@ -66,7 +66,7 @@ jobs:
fail-fast: false
matrix:
jdk: [8, 11]
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: ${{ matrix.jdk }}
Expand All @@ -81,7 +81,7 @@ jobs:
fail-fast: false
matrix:
indexer: [indexer, middleManager]
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: 8
Expand All @@ -91,7 +91,7 @@ jobs:
group: shuffle deep store

integration-custom-coordinator-duties-tests:
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: 8
Expand All @@ -106,7 +106,7 @@ jobs:
matrix:
jdk: [8, 11]
indexer: [middleManager, indexer]
uses: apache/druid/.github/workflows/reusable-standard-its.yml@master
uses: ./.github/workflows/reusable-standard-its.yml
with:
build_jdk: 8
runtime_jdk: ${{ matrix.jdk }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit-and-integration-tests-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
matrix:
sql_compatibility: [ false, true ]
name: unit tests (jdk8, sql-compat=${{ matrix.sql_compatibility }})
uses: apache/druid/.github/workflows/unit-tests.yml@master
uses: ./.github/workflows/unit-tests.yml
needs: build
with:
jdk: 8
Expand All @@ -115,16 +115,16 @@ jobs:
jdk: [11, 17]
sql_compatibility: [ false, true ]
name: unit tests (jdk${{ matrix.jdk }}, sql-compat=${{ matrix.sql_compatibility }})
uses: apache/druid/.github/workflows/unit-tests.yml@master
uses: ./.github/workflows/unit-tests.yml
needs: unit-tests
with:
jdk: ${{ matrix.jdk }}
sql_compatibility: ${{ matrix.sql_compatibility }}

standard-its:
needs: unit-tests
uses: apache/druid/.github/workflows/standard-its.yml@master
uses: ./.github/workflows/standard-its.yml

revised-its:
needs: unit-tests
uses: apache/druid/.github/workflows/revised-its.yml@master
uses: ./.github/workflows/revised-its.yml
8 changes: 4 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ on:

jobs:
indexing_modules_test:
uses: apache/druid/.github/workflows/reusable-unit-tests.yml@master
uses: ./.github/workflows/reusable-unit-tests.yml
with:
jdk: ${{ inputs.jdk }}
sql_compatibility: ${{ inputs.sql_compatibility }}
module: indexing
maven_projects: 'indexing-hadoop,indexing-service,extensions-core/kafka-indexing-service,extensions-core/kinesis-indexing-service'

processing_modules_test:
uses: apache/druid/.github/workflows/reusable-unit-tests.yml@master
uses: ./.github/workflows/reusable-unit-tests.yml
with:
jdk: ${{ inputs.jdk }}
sql_compatibility: ${{ inputs.sql_compatibility }}
module: processing
maven_projects: 'processing'

server_modules_test:
uses: apache/druid/.github/workflows/reusable-unit-tests.yml@master
uses: ./.github/workflows/reusable-unit-tests.yml
with:
jdk: ${{ inputs.jdk }}
sql_compatibility: ${{ inputs.sql_compatibility }}
module: server
maven_projects: 'server'

other_modules_test:
uses: apache/druid/.github/workflows/reusable-unit-tests.yml@master
uses: ./.github/workflows/reusable-unit-tests.yml
with:
jdk: ${{ inputs.jdk }}
sql_compatibility: ${{ inputs.sql_compatibility }}
Expand Down