-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ env: | |
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci | ||
ECOSYSTEM_CI_REPO_FILE: context.yaml | ||
JAVA_VERSION: 17 | ||
# Use the branch below to run the ecosystem | ||
ALTERNATIVE: "1.x" | ||
|
||
######################### | ||
# Repo specific setting # | ||
######################### | ||
|
@@ -28,21 +27,23 @@ jobs: | |
|
||
steps: | ||
- name: Install yq | ||
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y | ||
uses: dcarbone/install[email protected] | ||
|
||
- name: Set up Java | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
|
||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
path: current-repo | ||
# Build against the 1.x branch. Remove it when the main branch is compatible with the Quarkus main branch | ||
ref: 1.x | ||
|
||
- name: Checkout Ecosystem | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ${{ env.ECOSYSTEM_CI_REPO }} | ||
path: ecosystem-ci | ||
|