Quarkus ecosystem CI #781
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: Quarkus ecosystem CI | |
on: | |
watch: | |
types: [started] | |
env: | |
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci | |
ECOSYSTEM_CI_REPO_FILE: context.yaml | |
ECOSYSTEM_CI_REPO_PATH: quarkus-super-heroes | |
jobs: | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
if: github.actor == 'quarkusbot' | |
steps: | |
- name: Install yq | |
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
path: current-repo | |
- name: Checkout Ecosystem | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ env.ECOSYSTEM_CI_REPO }} | |
path: ecosystem-ci | |
- name: Setup and Run Tests | |
run: ./ecosystem-ci/setup-and-test | |
env: | |
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }} | |
QUARKUS_VERSION_POM_PATH: rest-fights | |
QUARKUS_VERSION_POM_PROPERTY: quarkus.platform.version |