Skip to content

Commit e94c378

Browse files
committed
Add cascading rebuild receiver
1 parent 15e5572 commit e94c378

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/dep_build_v2.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Re-build on jackson-databind v2 push
2+
on:
3+
repository_dispatch:
4+
types: [jackson-databind-pushed]
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: ['11', '17']
17+
env:
18+
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
19+
steps:
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
with
22+
ref: 2.x
23+
- name: Set up JDK
24+
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.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)