Skip to content

Commit

Permalink
Merge pull request #213 from dmlloyd/add-jbmar
Browse files Browse the repository at this point in the history
Remove Java 8 from CI, add `jboss-marshalling`
  • Loading branch information
dmlloyd authored Sep 28, 2023
2 parents 00b767d + ed43cb4 commit 4141f1c
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
distribution: temurin
architecture: x64
java-version: |
8
11
17
Expand All @@ -48,7 +47,7 @@ jobs:
cd wildfly-common
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava8.home=${{env.JAVA_HOME_8_X64}} -Djava11.home=${{env.JAVA_HOME_11_X64}}
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out WildFly Maven Plugin
uses: actions/checkout@v4
Expand All @@ -61,7 +60,7 @@ jobs:
cd wildfly-maven-plugin
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava8.home=${{env.JAVA_HOME_8_X64}} -Djava11.home=${{env.JAVA_HOME_11_X64}}
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss Modules
uses: actions/checkout@v4
Expand All @@ -74,4 +73,17 @@ jobs:
cd jboss-modules
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava8.home=${{env.JAVA_HOME_8_X64}} -Djava11.home=${{env.JAVA_HOME_11_X64}}
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss Marshalling
uses: actions/checkout@v4
with:
repository: jboss-remoting/jboss-marshalling
path: jboss-marshalling

- name: Test JBoss Marshalling with updated parent
run: |
cd jboss-marshalling
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}

0 comments on commit 4141f1c

Please sign in to comment.