Skip to content

Commit

Permalink
Temporarily override always running tests even if previous ones failed.
Browse files Browse the repository at this point in the history
Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp committed Aug 7, 2024
1 parent 19dbbce commit 58acfd5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,103 +57,119 @@ jobs:
mvn -B -ntp package install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out WildFly Maven Plugin
if: always()
uses: actions/checkout@v4
with:
repository: wildfly/wildfly-maven-plugin
path: wildfly-maven-plugin

- name: Test WildFly Maven Plugin with updated parent
if: always()
run: |
cd wildfly-maven-plugin
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss Modules
if: always()
uses: actions/checkout@v4
with:
repository: jboss-modules/jboss-modules
path: jboss-modules

- name: Test JBoss Modules with updated parent
if: always()
run: |
cd jboss-modules
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss Marshalling
if: always()
uses: actions/checkout@v4
with:
repository: jboss-remoting/jboss-marshalling
path: jboss-marshalling

- name: Test JBoss Marshalling with updated parent
if: always()
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}}
- name: Check out JBoss Logging Dev Tools
if: always()
uses: actions/checkout@v4
with:
repository: jboss-logging/logging-dev-tools
path: logging-dev-tools

- name: Prepare for testing logging projects with updated parent
if: always()
run: |
cd logging-dev-tools
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss LogManager
if: always()
uses: actions/checkout@v4
with:
repository: jboss-logging/jboss-logmanager
path: jboss-logmanager

- name: Test JBoss LogManager with updated parents
if: always()
run: |
cd jboss-logmanager
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss Logging
if: always()
uses: actions/checkout@v4
with:
repository: jboss-logging/jboss-logging
path: jboss-logging

- name: Test JBoss Logging with updated parents
if: always()
run: |
cd jboss-logging
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out JBoss Logging Tools
if: always()
uses: actions/checkout@v4
with:
repository: jboss-logging/jboss-logging-tools
path: jboss-logging-tools

- name: Test JBoss Logging Tools with updated parents
if: always()
run: |
cd jboss-logging-tools
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
git diff pom.xml
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}}
- name: Check out Log4j2 to JBoss LogManager bridge
if: always()
uses: actions/checkout@v4
with:
repository: jboss-logging/log4j2-jboss-logmanager
path: log4j2-jboss-logmanager

- name: Test Log4j2 to JBoss LogManager bridge with updated parents
if: always()
run: |
cd log4j2-jboss-logmanager
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N
Expand Down

0 comments on commit 58acfd5

Please sign in to comment.