Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Also test smallrye-common #424

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: |
11
17
- 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 -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp 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 -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn install
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X86}}
Loading