feat(ingest): Add metabase database id to platform instance mapping #11659
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Datahub Jars | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "docker/**" | |
- "docs/**" | |
- "**.md" | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- "docker/**" | |
- "docs/**" | |
- "**.md" | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check_jars: | |
strategy: | |
max-parallel: 1 | |
fail-fast: false | |
matrix: | |
command: | |
[ | |
"datahub-client", | |
"datahub-protobuf", | |
"spark-lineage" | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: 11 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.7" | |
- name: check ${{ matrix.command }} jar | |
run: | | |
./gradlew :metadata-integration:java:${{ matrix.command }}:build --info | |
./gradlew :metadata-integration:java:${{ matrix.command }}:javadoc |