Skip to content

Quarkus ecosystem CI #1174

Quarkus ecosystem CI

Quarkus ecosystem CI #1174

name: "Quarkus ecosystem CI"
on:
workflow_dispatch:
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: quarkiverse-google-cloud-services
jobs:
build:
name: "Build against latest Quarkus snapshot"
runs-on: ubuntu-latest
# loicmathieu has been added to be able to manually trigger the workflow
if: github.actor == 'quarkusbot' || github.actor == 'quarkiversebot' || github.actor == 'loicmathieu'
steps:
- 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
- name: Checkout Ecosystem
uses: actions/checkout@v2
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
path: ecosystem-ci
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: firebase-devservices/deployment/src/test/functions/package-lock.json
- uses: bahmutov/npm-install@v1
with:
working-directory: firebase-devservices/deployment/src/test/functions
- name: Setup and Run Tests
run: |
export CURRENT_USER=$(id -u)
export CURRENT_GROUP=$(id -g)
./ecosystem-ci/setup-and-test
env:
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }}