Skip to content

Commit bc2e28f

Browse files
committed
Enable GHA for 2.9.x
1 parent dd3d202 commit bc2e28f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ on:
66
push:
77
branches:
88
- master
9+
- 2.9.x
910
- 2.8.x
1011
pull_request:
1112
branches:
1213
- master
14+
- 2.9.x
1315
- 2.8.x
1416
workflow_dispatch:
1517

@@ -29,8 +31,8 @@ jobs:
2931
- 21
3032
# Infinispan 13.x is not compatible with Java 24. It can only be upgraded with Hibernate 6.x
3133
#- 24
32-
isMaster:
33-
- ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request' }}
34+
isPR:
35+
- ${{ github.event_name == 'pull_request' }}
3436
test-profile: ["", "-Pintegration-test -Pskip-default-test", "-Pperformance-test -Pskip-default-test"]
3537
exclude:
3638
- platform: windows-latest
@@ -43,7 +45,7 @@ jobs:
4345
# java-version: 24
4446
# Do not run performance tests on PRs
4547
- test-profile: '-Pperformance-test -Pskip-default-test'
46-
isMaster: false
48+
isPR: true
4749
runs-on: ${{ matrix.platform }}
4850
steps:
4951
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)