aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-12-26 03:04:48 +0100
committervanhauser-thc <vh@thc.org>2021-12-26 03:04:48 +0100
commit8fe6282164b5c46032247acd049c8cf38b81ad6b (patch)
tree59177b3719970a57dd6ce7f9ce10b589bfd2e5d2 /.github/workflows
parent8588becf474e7a3fd37440be2c2c945bf0b6a02a (diff)
downloadafl++-8fe6282164b5c46032247acd049c8cf38b81ad6b.tar.gz
force frida test in ci for macos
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d4be7809..886148df 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,27 +12,31 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-18.04]
+ env:
+ AFL_SKIP_CPUFREQ: 1
+ AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES: 1
steps:
- uses: actions/checkout@v2
- name: debug
- run: apt-cache search plugin-dev | grep gcc- ; echo ; apt-cache search clang-format- | grep clang-format-
+ run: apt-cache search plugin-dev | grep gcc-; echo; apt-cache search clang-format- | grep clang-format-
- name: update
run: sudo apt-get update && sudo apt-get upgrade -y
- name: install packages
run: sudo apt-get install -y -m -f --install-suggests build-essential git libtool libtool-bin automake bison libglib2.0-0 clang llvm-dev libc++-dev findutils libcmocka-dev python3-dev python3-setuptools ninja-build
- name: compiler installed
- run: gcc -v ; echo ; clang -v
+ run: gcc -v; echo; clang -v
- name: install gcc plugin
run: sudo apt-get install -y -m -f --install-suggests $(readlink /usr/bin/gcc)-plugin-dev
- name: build afl++
run: make distrib ASAN_BUILD=1
- name: run tests
- run: sudo -E ./afl-system-config ; export AFL_SKIP_CPUFREQ=1 ; make tests
+ run: sudo -E ./afl-system-config; make tests
macos:
runs-on: macOS-latest
env:
AFL_MAP_SIZE: 65536
AFL_SKIP_CPUFREQ: 1
+ AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES: 1
steps:
- uses: actions/checkout@v2
- name: install