File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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?)
You can’t perform that action at this time.
0 commit comments