aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Meumertzheim <fabian@meumertzhe.im>2021-12-08 17:01:49 +0100
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-12-08 17:22:32 +0100
commitafdf70c6e3793bcc1b03e38ef078023258e76986 (patch)
tree29cfd4e511e0679dd67489d785aa24983a5ec46d
parentf1d94fb490a632cce4875bde349dc519e397d2cb (diff)
downloadjazzer-api-afdf70c6e3793bcc1b03e38ef078023258e76986.tar.gz
Run CI tests on macOS 11
-rw-r--r--.github/workflows/run-all-tests.yml6
-rw-r--r--README.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/run-all-tests.yml b/.github/workflows/run-all-tests.yml
index 48c46865..5cb69f9d 100644
--- a/.github/workflows/run-all-tests.yml
+++ b/.github/workflows/run-all-tests.yml
@@ -14,11 +14,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: [ubuntu-latest, macos-10.15, windows-latest]
+ os: [ubuntu-latest, macos-11, windows-latest]
jdk: [8, 15, 17]
exclude:
# Only test against JDK 15 with Ubuntu since this is what OSS-Fuzz uses.
- - os: macos-10.15
+ - os: macos-11
jdk: 15
- os: windows-latest
jdk: 15
@@ -26,7 +26,7 @@ jobs:
- os: ubuntu-latest
arch: "linux"
cache: "/home/runner/.cache/bazel-disk"
- - os: macos-10.15
+ - os: macos-11
arch: "macos-x86_64"
# Always use the toolchain as UBSan produces linker errors with Apple LLVM 13.
bazel_args: "--config=toolchain"
diff --git a/README.md b/README.md
index f8b08d1a..11eec3f4 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ It is based on [libFuzzer](https://llvm.org/docs/LibFuzzer.html) and brings many
The JVM bytecode is executed inside the fuzzer process, which ensures fast execution speeds and allows seamless fuzzing of
native libraries.
-Jazzer supports Linux and (experimentally) macOS 10.15 and Windows, all on the x64 architecture.
+Jazzer supports Linux and (experimentally) macOS 10.15 and 11 as well as Windows, all on the x64 architecture.
## News: Jazzer available in OSS-Fuzz