File tree Expand file tree Collapse file tree 2 files changed +21
-87
lines changed Expand file tree Collapse file tree 2 files changed +21
-87
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -12,13 +12,32 @@ concurrency:
12
12
13
13
jobs :
14
14
15
+ test_junit_springboot :
16
+ name : Spring Boot
17
+ runs-on : ubuntu-22.04
18
+ steps :
19
+ - uses : actions/checkout@v4
20
+ - name : Set up JDK
21
+ uses : actions/setup-java@v4
22
+ with :
23
+ distribution : zulu
24
+ java-version : 17
25
+ - name : Run Spring Boot example
26
+ # The Spring Boot example project is built with Maven. The shell script builds the project
27
+ # against the local version of Jazzer and runs its unit and fuzz tests.
28
+ # Spring version 6 requires JDK 17.
29
+ run : |
30
+ cd examples/junit-spring-web
31
+ ./build-and-run-tests.sh
32
+ shell : bash
33
+
15
34
build_and_test :
16
35
runs-on : ${{ matrix.os }}
17
36
name : Build & Test
18
37
strategy :
19
38
matrix :
20
39
os : [ubuntu-22.04, windows-2022, macos-14]
21
- jdk : [21]
40
+ jdk : [21, 8 ]
22
41
include :
23
42
- jdk : 21
24
43
# Workaround for https://github.com/bazelbuild/bazel/issues/14502
27
46
# arch: "linux"
28
47
# bazel_args: "//launcher/android:jazzer_android"
29
48
- os : ubuntu-22.04
30
- # Use JDK 8 only on Ubuntu in PRs.
31
- jdk : 8
49
+ arch : " linux"
32
50
- os : macos-14
33
51
arch : " macos-arm64"
34
52
bazel_args : " --xcode_version_config=//.github:host_xcodes"
You can’t perform that action at this time.
0 commit comments