diff --git a/.github/workflows/release_clang.yml b/.github/workflows/release_clang.yml index 0b315d3a41c42f70e248044f62a4d360c53267b5..4e19d663d246bc594f16b03f60a7db1d20a503d3 100644 --- a/.github/workflows/release_clang.yml +++ b/.github/workflows/release_clang.yml @@ -40,6 +40,19 @@ jobs: runs-on: ubuntu-20.04-self-hosted + container: + image: docker.io/tarantool/testing:ubuntu-jammy-clang16 + # Mount /dev to the container to be able to mount a disk image inside it + # for successful run of the .github/actions/environment action. + volumes: + - /dev:/dev + # Our testing expects that the init process (PID 1) will + # reap orphan processes. At least the following test leans + # on it: app-tap/gh-4983-tnt-e-assert-false-hangs.test.lua. + # Add extra privileges to the container for successful run + # of the .github/actions/environment action. + options: '--init --privileged' + steps: - name: Prepare checkout uses: tarantool/actions/prepare-checkout@master @@ -52,8 +65,8 @@ jobs: uses: ./.github/actions/install-deps-debian - name: test env: - CC: clang - CXX: clang++ + CC: clang-16 + CXX: clang++-16 run: make -f .test.mk test-release - name: Send VK Teams message on failure if: failure()