Skip to content

Commit

Permalink
Reintroduce incontainer testing to PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotn committed Jun 8, 2022
1 parent 2199f12 commit f28bea5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ jobs:
with:
java-version: 11
- name: Download WildFly
# TODO - wget link needs to eventually be replaced once there is a WFLY that we can use for EE 10
run: |
wget https://download.jboss.org/wildfly/24.0.1.Final/wildfly-preview-24.0.1.Final.zip
wget https://ci.wildfly.org/guestAuth/repository/download/WF_WildflyPreviewNightly/latest.lastSuccessful/wildfly-preview-latest-SNAPSHOT.zip
unzip wildfly-preview-latest-SNAPSHOT.zip
# ZIP contains two more ZIPs, sources and actual WFLY
rm wildfly-*-src.zip
rm wildfly-preview-latest-SNAPSHOT.zip
unzip wildfly-*.zip -d container
rm wildfly-preview-24.0.1.Final.zip
cd container
mv ./* wildfly/
- name: Get Date
Expand Down Expand Up @@ -75,8 +77,6 @@ jobs:
incontainer-tests:
name: "Weld In-container Tests - JDK ${{matrix.java.name}}"
runs-on: ubuntu-latest
# TODO temporarily force-skip any in-container testing until we have a WFLY version that can execute it
if: "false"
needs: build-jdk11
timeout-minutes: 120
strategy:
Expand Down Expand Up @@ -140,8 +140,6 @@ jobs:
CDI-TCK:
name: "CDI TCK - JDK ${{matrix.java.name}}"
runs-on: ubuntu-latest
# TODO temporarily force-skip any in-container testing until we have a WFLY version that can execute it
if: "false"
needs: build-jdk11
timeout-minutes: 120
strategy:
Expand Down Expand Up @@ -252,8 +250,6 @@ jobs:
name: "Weld Examples build and test - JDK 11}"
runs-on: ubuntu-latest
needs: build-jdk11
# TODO temporarily force-skip any in-container testing until we have a WFLY version that can execute it
if: "false"
timeout-minutes: 120
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -351,8 +347,6 @@ jobs:
name: "Weld SE-Servlet Cooperation"
runs-on: ubuntu-latest
needs: build-jdk11
# TODO temporarily force-skip due to JSF usage relying on now removed deprecated APIs
if: "false"
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<!-- Might be used to override the version declared in weld-parent -->
<!-- build.config.version>9</build.config.version-->
<!-- Version of the CDI 4.x release TCK -->
<cdi.tck-4-0.version>4.0.1</cdi.tck-4-0.version>
<cdi.tck-4-0.version>4.0.2</cdi.tck-4-0.version>
<classfilewriter.version>1.2.5.Final</classfilewriter.version>
<spotbugs-maven-plugin.version>4.5.3.0</spotbugs-maven-plugin.version>
<spotbugs-annotations-version>4.5.3</spotbugs-annotations-version>
Expand Down

0 comments on commit f28bea5

Please sign in to comment.