diff options
author | van Hauser <vh@thc.org> | 2020-12-21 12:27:06 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-21 12:27:06 +0100 |
commit | 816ba61080c30474bcb3d4b2cb243734271b0056 (patch) | |
tree | b2221064db694a228392be4634eb522afd6dcdac | |
parent | 7e27448dac2191060320831904f32fe9d572bc3d (diff) | |
download | afl++-816ba61080c30474bcb3d4b2cb243734271b0056.tar.gz |
fix ci
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 694d2316..a7d91e64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,10 @@ jobs: os: [ubuntu-20.04, ubuntu-18.04] steps: - uses: actions/checkout@v2 + - name: debug: + run: apt-cache search plugin-dev | grep gcc ; apt-cache search clang | grep clang- - name: install packages - run: sudo apt-get install -y -m -f --install-suggests git libtool libtool-bin automake bison libglib2.0-0 build-essential clang gcc gcc-plugin-dev libc++-dev findutils libcmocka-dev python3-setuptools + 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 - name: compiler installed run: gcc -v ; clang -v - name: build afl++ |