aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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