diff options
author | van Hauser <vh@thc.org> | 2021-03-26 19:38:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 19:38:25 +0100 |
commit | 5ee2dd6bbdcabbdcc33278876632a9bc5060d71f (patch) | |
tree | 36c8a4dd87737b3150f663966801453e18d92cfe | |
parent | fa349b4f4ceaa3e8309e7b01ddee6b6f895175f6 (diff) | |
parent | eac254ae5756969d6c85c81ad797e8ba4efdd52e (diff) | |
download | afl++-5ee2dd6bbdcabbdcc33278876632a9bc5060d71f.tar.gz |
Merge pull request #848 from AFLplusplus/stable
-m32 support for docker container
-rw-r--r-- | .github/workflows/build_aflplusplus_docker.yaml | 4 | ||||
-rw-r--r-- | Dockerfile | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/build_aflplusplus_docker.yaml b/.github/workflows/build_aflplusplus_docker.yaml index ab3bfeee..8aa5b8f7 100644 --- a/.github/workflows/build_aflplusplus_docker.yaml +++ b/.github/workflows/build_aflplusplus_docker.yaml @@ -5,10 +5,6 @@ on: branches: [ stable ] # paths: # - Dockerfile - pull_request: - branches: [ stable ] -# paths: -# - Dockerfile jobs: push_to_registry: diff --git a/Dockerfile b/Dockerfile index 1cb00d5d..8f89b9aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN echo "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main RUN apt-get update && apt-get full-upgrade -y && \ apt-get -y install --no-install-suggests --no-install-recommends \ - gcc-10 g++-10 gcc-10-plugin-dev gcc-10-multilib gdb lcov \ + gcc-10 g++-10 gcc-10-plugin-dev gcc-10-multilib gcc-multilib gdb lcov \ clang-12 clang-tools-12 libc++1-12 libc++-12-dev \ libc++abi1-12 libc++abi-12-dev libclang1-12 libclang-12-dev \ libclang-common-12-dev libclang-cpp12 libclang-cpp12-dev liblld-12 \ |