Skip to content

Commit

Permalink
Also test smallrye-common
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlloyd committed Sep 20, 2023
1 parent 18b052f commit 20cadb5
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,21 @@ jobs:
steps:
- uses: actions/checkout@v2
name: checkout
with:
path: smallrye-parent

- uses: AdoptOpenJDK/install-jdk@v1
name: set up jdk 11
- uses: actions/setup-java@v3
name: set up jdk versions
with:
version: 11
distribution: temurin
java-version: |
17
11
- name: Maven
run: mvn -B -ntp formatter:validate install
run: |
cd smallrye-parent
mvn -B -ntp formatter:validate install
- uses: actions/checkout@v2
name: checkout smallrye-config
Expand All @@ -38,6 +45,19 @@ jobs:
- name: test with smallrye-config
run: |
cd smallrye-config
mvn versions:update-parent -DallowSnapshots=true -N
mvn -B versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn install -Djava11.home=${{env.JAVA_HOME_11_X86}}
- uses: actions/checkout@v2
name: checkout smallrye-common
with:
repository: smallrye/smallrye-common
path: smallrye-common

- name: test with smallrye-common
run: |
cd smallrye-common
mvn -B versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn install
mvn install -Djava11.home=${{env.JAVA_HOME_11_X86}}

0 comments on commit 20cadb5

Please sign in to comment.