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 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?)
You can’t perform that action at this time.
0 commit comments