Skip to content

Quarkus ecosystem CI #1635

Quarkus ecosystem CI

Quarkus ecosystem CI #1635

name: "Quarkus ecosystem CI"
on:
watch:
types: [started]
# For this CI to work, ECOSYSTEM_CI_TOKEN needs to contain a GitHub with rights to close the Quarkus issue that the user/bot has opened,
# while 'ECOSYSTEM_CI_REPO_PATH' needs to be set to the corresponding path in the 'quarkusio/quarkus-ecosystem-ci' repository
env:
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci
ECOSYSTEM_CI_REPO_FILE: context.yaml
JAVA_VERSION: 17
#########################
# Repo specific setting #
#########################
ECOSYSTEM_CI_REPO_PATH: blaze-persistence
jobs:
build:
name: "Build against latest Quarkus snapshot"
runs-on: ubuntu-latest
if: github.actor == 'quarkusbot' || github.actor == 'Mobe91' || github.actor == 'beikov'
steps:
- name: Update /etc/hosts file
# /etc/hosts file needs to be updated as a workaround for
# https://github.com/actions/virtual-environments/issues/3185
run: echo -e "$(ip addr show eth0 | grep "inet\b" | awk '{print $2}' | cut -d/ -f1)\t$(hostname -f) $(hostname -s)" | sudo tee -a /etc/hosts
- 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@v1
with:
java-version: ${{ env.JAVA_VERSION }}
- name: Checkout repo
uses: actions/checkout@v2
with:
path: current-repo
ref: main
- name: Checkout Ecosystem
uses: actions/checkout@v2
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
ref: main
path: ecosystem-ci
- name: Setup and Run Tests
run: ./ecosystem-ci/setup-and-test
env:
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }}