Skip to content

Commit 73c1853

Browse files
committed
Add v3 upstream rebuild too
1 parent a83b40d commit 73c1853

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

.github/workflows/upstream-dispatch.yml renamed to .github/workflows/upstream-dispatch-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Upstream Dispatch
1+
name: Upstream Dispatch v2
22

33
# test build when upstream jackson modules are published
44

@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build:
12-
name: Build and Test
12+
name: Build and Test on databind v2 changes
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout current branch (full)
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Upstream Dispatch v3
2+
3+
# test build when upstream jackson modules are published
4+
5+
on:
6+
repository_dispatch:
7+
types: [jackson-databind-pushed]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
name: Build and Test on databind v3 changes
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout current branch (full)
16+
uses: actions/checkout@v4
17+
with:
18+
ref: master
19+
fetch-depth: 0
20+
21+
- name: Setup Java (zulu@11)
22+
uses: actions/setup-java@v4
23+
with:
24+
distribution: zulu
25+
java-version: 11
26+
cache: sbt
27+
28+
- run: sbt -J-Xmx2G '++ 2.13' test

0 commit comments

Comments
 (0)