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

Upgrade WildFly to 29.0.1.Final #209

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
profile:
- "'-Dsecurity.manager'"
- "'-Dprovision.preview'"
wildfly-version: ['28.0.1.Final', '29.0.0.Final']
wildfly-version: ['28.0.1.Final', '29.0.1.Final']

steps:
- uses: actions/checkout@v4
Expand Down
84 changes: 0 additions & 84 deletions .github/workflows/nightly-ci.yml

This file was deleted.

36 changes: 29 additions & 7 deletions .github/workflows/resteasy-build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
# This workflow is for a nightly run against RESTEasy upstream
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: RESTEasy Test Build
name: RESTEasy MicroProfile Integration Tests

on:
push:
branches:
- 'main'
paths-ignore:
- '.gitignore'
- ".mvn"
- "CODEOWNERS"
- "CODE_OF_CONDUCT.md"
- "CONTRIBUTING.adoc"
- "dco.txt"
- "LICENSE"
- "mvnw"
- "mvnw.cmd"
- "README.adoc"
- "security.txt"
- "*/README.adoc"
schedule:
- cron: '0 0 * * *' # Every day at 00:00 UTC

Expand All @@ -24,14 +38,16 @@ jobs:
resteasy-microprofile-build:
runs-on: ${{ matrix.os }}
needs: resteasy-build
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
java: ['11', '17', '21-ea']

steps:
- uses: actions/checkout@v4
- name: Checkout RESTEasy MicroProfile
uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: resteasy-maven-repository
Expand All @@ -45,17 +61,23 @@ jobs:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven Java ${{ matrix.java }}
run: mvn -B clean install '-Dversion.org.jboss.resteasy=${{ needs.resteasy-build.outputs.resteasy-version }}'
- name: Upload surefire reports
uses: actions/upload-artifact@v3
- name: Build and Test RESTEasy MicroProfile Java ${{ matrix.java }} - ${{ matrix.os }}
run: |
mvn clean install -B -Dversion.org.jboss.resteasy=${{ needs.resteasy-build.outputs.resteasy-version }} -Pci
- uses: actions/upload-artifact@v3
if: failure()
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}
path: '**/surefire-reports/'
- uses: actions/upload-artifact@v3
if: failure()
with:
name: failsafe-reports-${{ matrix.os }}-${{ matrix.java }}
path: '**/failsafe-reports/'
- name: Upload server logs
uses: actions/upload-artifact@v3
if: failure()
with:
name: server-logs-${{ matrix.os }}-${{ matrix.java }}
path: '**/*.log'

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<version.org.jboss.logging.jboss-logging-tools>2.2.1.Final</version.org.jboss.logging.jboss-logging-tools>
<version.org.jboss.resteasy>6.2.5.Final</version.org.jboss.resteasy>

<version.org.wildfly>29.0.0.Final</version.org.wildfly>
<version.org.wildfly>29.0.1.Final</version.org.wildfly>
<!-- TODO (jrp) this can be removed when RESTEASY-2973 is resolved -->
<version.org.wildfly.common>1.6.0.Final</version.org.wildfly.common>

Expand Down