Skip to content

Commit f88b1d0

Browse files
committed
Merge branch '2.18'
2 parents bea4c17 + 08ff9fa commit f88b1d0

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Re-build on jackson-databind v2 push
2+
on:
3+
repository_dispatch:
4+
types: [jackson-databind-pushed]
5+
# just for testing
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
build:
13+
runs-on: 'ubuntu-22.04'
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
java_version: ['11', '17', '21']
18+
env:
19+
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
20+
steps:
21+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
22+
- name: Set up JDK
23+
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
24+
with:
25+
distribution: 'temurin'
26+
java-version: ${{ matrix.java_version }}
27+
cache: 'maven'
28+
- name: Build and test
29+
run: ./mvnw -B -ff -ntp clean verify

.github/workflows/dep_build_v3.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Re-build on jackson-databind v3 push
2+
on:
3+
repository_dispatch:
4+
types: [jackson-databind-pushed-v3]
5+
# just for testing
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
build:
13+
runs-on: 'ubuntu-22.04'
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
java_version: ['11', '17', '21']
18+
env:
19+
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
20+
steps:
21+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
22+
with:
23+
ref: master
24+
- name: Set up JDK
25+
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
26+
with:
27+
distribution: 'temurin'
28+
java-version: ${{ matrix.java_version }}
29+
cache: 'maven'
30+
- name: Build and test
31+
run: ./mvnw -B -ff -ntp clean verify

0 commit comments

Comments
 (0)