diff options
author | van Hauser <vh@thc.org> | 2020-12-21 12:38:12 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-21 12:38:12 +0100 |
commit | 7172302be822c314a8c54dab9391a254ce72d557 (patch) | |
tree | 259c972eddbafa41af8cef083847b180e3172cda | |
parent | b42f405e6093b3ff7d48b691a041a0e7d8ad8c2e (diff) | |
download | afl++-7172302be822c314a8c54dab9391a254ce72d557.tar.gz |
ci fix
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54e3071e..b307de8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,13 +15,13 @@ jobs: steps: - uses: actions/checkout@v2 - name: debug - run: apt-cache search plugin-dev | grep gcc ; apt-cache search clang | grep clang- + run: apt-cache search plugin-dev | grep gcc- ; echo ; apt-cache search clang- | grep clang- - 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 - name: compiler installed - run: gcc -v ; clang -v + run: gcc -v ; echo ; clang -v - name: install gcc plugin - run: apt-get install -y -m -f --install-suggests $(readlink /usr/bin/gcc)-plugin-dev + 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 |