Skip to content

Commit

Permalink
Merge pull request #192 from jamezp/issue190-jakarta-ee-10
Browse files Browse the repository at this point in the history
[190] Do not run jobs on Java 11 as WildFly is migrating to require J…
  • Loading branch information
jamezp authored Oct 22, 2024
2 parents 732f9dd + 98a9b4e commit 4c6ffd5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/authentication-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ name: Run Jakarta Authentication TCK
on:
push:
branches:
- 'main'
- 'jakarta-ee-10'
paths:
- '.github/workflows/authentication-tck.yml'
- 'authentication/**'
pull_request:
branches:
- 'main'
- 'jakarta-ee-10'
paths:
- '.github/workflows/authentication-tck.yml'
- 'authentication/**'
types:
- opened
Expand All @@ -38,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17', '21']
java: ['17', '21']

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/concurrency-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ name: Run Jakarta Concurrency TCK
on:
push:
branches:
- 'main'
- 'jakarta-ee-10'
paths:
- '.github/workflows/concurrency-tck.yml'
- 'concurrency/**'
pull_request:
branches:
- 'main'
- 'jakarta-ee-10'
paths:
- '.github/workflows/concurrency-tck.yml'
- 'concurrency/**'
types:
- opened
Expand All @@ -38,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17', '21']
java: ['17', '21']

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/core-profile-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ name: Jakarta EE Core Profile with WildFly
on:
push:
branches:
- 'main'
- 'jakarta-ee-10'
paths:
- '.github/workflows/core-profile-tck.yml'
- 'core-profile/**'
pull_request:
branches:
- 'main'
- 'jakarta-ee-10'
paths:
- '.github/workflows/core-profile-tck.yml'
- 'core-profile/**'
schedule:
- cron: '0 0 * * *' # Every day at 00:00 UTC
Expand All @@ -39,7 +41,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17', '21']
java: ['17', '21']

# Runner steps
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jakarta-xml-binding-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ name: Jakarta XML Binding TCK with WildFly
on:
#push:
# branches-ignore:
# - 'main'
# - 'jakarta-ee-10'
# paths:
# - 'jakarta-xml-binding/**'
#pull_request:
# branches:
# - 'main'
# - 'jakarta-ee-10'
# paths:
# - 'jakarta-xml-binding/**'
#schedule:
Expand All @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11']
java: ['17']

# Runner steps
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/security-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ on:
branches:
- '**'
paths:
- '.github/workflows/security-tck.yml'
- 'security/**'
pull_request:
branches:
- '**'
paths:
- '.github/workflows/security-tck.yml'
- 'security/**'
types:
- opened
Expand All @@ -38,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17']
java: ['17', '21']

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 4c6ffd5

Please sign in to comment.