diff --git a/.github/scripts/flags-clang.sh b/.github/scripts/flags-clang.sh index eb8805784e..dfcf55eb06 100644 --- a/.github/scripts/flags-clang.sh +++ b/.github/scripts/flags-clang.sh @@ -57,6 +57,5 @@ add_cxx_flag -Wno-c99-extensions add_cxx_flag -Wno-old-style-cast # Downgrade to warning so we still see it. -add_flag -Wno-error=documentation-unknown-command add_flag -Wno-error=unreachable-code add_flag -Wno-error=unused-variable diff --git a/other/docker/autotools/run b/other/docker/autotools/run new file mode 100755 index 0000000000..895ff3caa3 --- /dev/null +++ b/other/docker/autotools/run @@ -0,0 +1,3 @@ +#!/bin/sh + +docker build -t toxchat/c-toxcore:autotools -f other/docker/autotools/Dockerfile . diff --git a/other/docker/circleci/Dockerfile b/other/docker/circleci/Dockerfile index a4070a8d6d..ef90683b92 100644 --- a/other/docker/circleci/Dockerfile +++ b/other/docker/circleci/Dockerfile @@ -10,6 +10,7 @@ RUN apt-get update && \ libopus-dev \ libsodium-dev \ libvpx-dev \ + llvm-dev \ ninja-build \ pkg-config \ && apt-get clean \ diff --git a/other/docker/circleci/run b/other/docker/circleci/run new file mode 100755 index 0000000000..22aedf9fac --- /dev/null +++ b/other/docker/circleci/run @@ -0,0 +1,6 @@ +#!/bin/sh + +SANITIZER="${1:-asan}" + +docker build -t toxchat/c-toxcore:circleci other/docker/circleci +docker run --rm -it -v "$PWD:/c-toxcore" toxchat/c-toxcore:circleci "$SANITIZER" diff --git a/other/docker/doxygen/run b/other/docker/doxygen/run index 82082517b1..85b24cb78c 100755 --- a/other/docker/doxygen/run +++ b/other/docker/doxygen/run @@ -2,5 +2,5 @@ set -eux -docker build -t toxchat/toxcore:docs -f other/docker/doxygen/Dockerfile . -docker run --rm -it -p "28192:80" toxchat/toxcore:docs +docker build -t toxchat/c-toxcore:docs -f other/docker/doxygen/Dockerfile . +docker run --rm -it -p "28192:80" toxchat/c-toxcore:docs