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

CI - update initial build to use JDK 17 #168

Merged
merged 1 commit into from
Jun 3, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
# Preparation job that builds the cache, prepares snapshots and server
build-jdk11:
initial-build:
name: "Initial Weld Build + WildFly patch"
runs-on: ubuntu-latest
steps:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: 'temurin'
- name: Download WildFly
run: |
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
incontainer-tests:
name: "Weld In-container Tests - JDK ${{matrix.java.name}}"
runs-on: ubuntu-latest
needs: build-jdk11
needs: initial-build
timeout-minutes: 120
strategy:
fail-fast: false
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
CDI-TCK:
name: "Weld CDI TCK - JDK ${{matrix.java.name}}"
runs-on: ubuntu-latest
needs: build-jdk11
needs: initial-build
timeout-minutes: 120
strategy:
fail-fast: false
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
no-container-tests:
name: "Weld Tests w/o Container - JDK ${{matrix.java.name}}"
runs-on: ubuntu-latest
needs: build-jdk11
needs: initial-build
timeout-minutes: 120
strategy:
fail-fast: false
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
CDI-TCK-SE:
name: "Weld CDI TCK SE - JDK ${{matrix.java.name}}"
runs-on: ubuntu-latest
needs: build-jdk11
needs: initial-build
timeout-minutes: 120
strategy:
fail-fast: false
Expand Down
Loading