XTDB CI #1676
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: XTDB CI | |
run-name: XTDB CI | |
on: | |
push: | |
branches-ignore: | |
- docs-live | |
- docker-latest | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
checks: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Setup Node.JS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: "1.8.1" | |
- name: Test | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: test --continue | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
check_name: JUnit Test Report | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
- name: Post Slack Notification (On Fail) | |
if: failure() && github.repository == 'xtdb/xtdb' && github.ref == 'refs/heads/main' | |
uses: ravsamhq/notify-slack-action@v2 | |
with: | |
status: ${{ job.status }} | |
notification_title: "*{workflow}* has {status_message}:" | |
message_format: "{emoji} `test` job has {status_message} in *{workflow}*" | |
notify_when: "failure" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
integration-test: | |
name: Integration Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
checks: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Integration Test | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: integration-test | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
check_name: JUnit Integration Test Report | |
report_paths: '**/build/test-results/integration-test/TEST-*.xml' | |
- name: Post Slack Notification (On Fail) | |
if: failure() && github.repository == 'xtdb/xtdb' && github.ref == 'refs/heads/main' | |
uses: ravsamhq/notify-slack-action@v2 | |
with: | |
status: ${{ job.status }} | |
notification_title: "*{workflow}* has {status_message}:" | |
message_format: "{emoji} `integration-test` job has {status_message} in *{workflow}*" | |
notify_when: "failure" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
slt-1: | |
name: SLT 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: SLT 1 | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: slt-test | |
slt-2: | |
name: SLT 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: SLT 2 | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: slt-test-2 |