Skip to content

Commit 4285a6e

Browse files
committed
Add V3 rebuilds
1 parent 3d67fae commit 4285a6e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/dep_build_v3.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Re-build on jackson-databind v3 push
2+
on:
3+
repository_dispatch:
4+
types: [jackson-databind-pushed-v2]
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
build:
11+
# Do we want wide matrix build? For now, limited
12+
runs-on: 'ubuntu-22.04'
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
java_version: ['17', '21']
17+
env:
18+
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
19+
steps:
20+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
with:
22+
ref: 3.x
23+
- name: Set up JDK
24+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
25+
with:
26+
distribution: 'temurin'
27+
java-version: ${{ matrix.java_version }}
28+
cache: 'maven'
29+
- name: Build and test
30+
run: ./mvnw -B -ff -ntp clean verify
31+
32+
# No recursive rebuild (yet?)

0 commit comments

Comments
 (0)