Update CI secrets #6443
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: Wave CI | |
on: | |
push: | |
branches: | |
- '**' | |
- '!refs/tags/.*' | |
tags-ignore: | |
- '**' | |
paths-ignore: | |
- 'docs/**' | |
- mkdocs.yml | |
- '*.md' | |
- .github/workflows/website_preview.yml | |
- .github/workflows/website_deploy.yml | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths-ignore: | |
- 'docs/**' | |
- mkdocs.yml | |
- '*.md' | |
- .github/workflows/website_preview.yml | |
- .github/workflows/website_deploy.yml | |
jobs: | |
build: | |
name: Build Wave | |
if: "github.event == 'push' || github.repository != github.event.pull_request.head.repo.full_name" | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
java_version: [19] | |
steps: | |
- name: Environment | |
run: env | sort | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
submodules: true | |
- name: Setup Java ${{ matrix.java_version }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{matrix.java_version}} | |
distribution: 'temurin' | |
architecture: x64 | |
cache: gradle | |
- name: Compile | |
run: make compile | |
env: | |
GRADLE_OPTS: '-Dorg.gradle.daemon=false' | |
- name: Tests | |
if: "!contains(github.event.head_commit.message, '[skip test]')" | |
run: | | |
make check | |
env: | |
GRADLE_OPTS: '-Dorg.gradle.daemon=false' | |
GITHUB_TOKEN: ${{ secrets.GH_SEQERA_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{secrets.TOWER_CI_AWS_ACCESS}} | |
AWS_SECRET_ACCESS_KEY: ${{secrets.TOWER_CI_AWS_SECRET}} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
DOCKER_PAT: ${{ secrets.DOCKER_PAT }} | |
QUAY_USER: "pditommaso+wave_ci_tests" | |
QUAY_PAT: ${{ secrets.QUAY_PAT }} | |
AZURECR_USER: ${{ secrets.AZURECR_USER }} | |
AZURECR_PAT: ${{ secrets.AZURECR_PAT }} | |
GOOGLECR_KEYS: ${{ secrets.GOOGLECR_KEYS }} | |
- name: Cleanup build workspace | |
if: always() | |
run: | | |
sudo rm -rf /home/runner/work/wave/wave/build-workspace | |
- name: Release | |
if: "contains(github.event.head_commit.message, '[release]')" | |
run: | | |
bash tag-and-push.sh | |
env: | |
GRADLE_OPTS: '-Dorg.gradle.daemon=false' | |
AWS_ACCESS_KEY_ID: ${{secrets.TOWER_CI_AWS_ACCESS}} | |
AWS_SECRET_ACCESS_KEY: ${{secrets.TOWER_CI_AWS_SECRET}} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DOCKER_PAT: ${{ secrets.DOCKER_PAT }} | |
QUAY_PAT: ${{ secrets.QUAY_PAT }} | |
GITHUB_TOKEN: ${{ secrets.GH_SEQERA_TOKEN }} | |
- name: Publish tests report | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-reports-jdk-${{ matrix.java_version }} | |
path: | | |
**/build/reports/tests/test | |
- name : Publish code coverage report | |
if: success() | |
uses : actions/upload-artifact@v4 | |
with : | |
name : code-coverage-reports-jdk-${{ matrix.java_version }} | |
path : | | |
**/build/reports/jacoco/test |