diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 75400f4b14e..88a8bdaea9e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -15,46 +15,49 @@ on: # runs every day at 3:23 AM UTC - cron: '23 3 * * *' + push: + branches: [ fix/tls-anvil-wrong-alerts ] + jobs: - clang_tidy: - name: "clang-tidy" + # clang_tidy: + # name: "clang-tidy" - runs-on: ubuntu-22.04 + # runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 + # steps: + # - uses: actions/checkout@v3 - - name: Setup Build Agent - uses: ./.github/actions/setup-build-agent - with: - target: clang-tidy - cache-key: linux-x86_64-clang-tidy + # - name: Setup Build Agent + # uses: ./.github/actions/setup-build-agent + # with: + # target: clang-tidy + # cache-key: linux-x86_64-clang-tidy - - name: Install Boost - run: sudo apt-get -qq install libboost-dev + # - name: Install Boost + # run: sudo apt-get -qq install libboost-dev - - name: Configure Build - run: python3 ./configure.py --cc=clang --build-targets=shared,cli,tests,examples,bogo_shim --build-fuzzers=test --with-boost --with-sqlite --with-zlib --with-lzma --with-bzip2 + # - name: Configure Build + # run: python3 ./configure.py --cc=clang --build-targets=shared,cli,tests,examples,bogo_shim --build-fuzzers=test --with-boost --with-sqlite --with-zlib --with-lzma --with-bzip2 - - name: Run Clang Tidy - run: python3 ./src/scripts/dev_tools/run_clang_tidy.py --verbose + # - name: Run Clang Tidy + # run: python3 ./src/scripts/dev_tools/run_clang_tidy.py --verbose - valgrind: - name: "valgrind" + # valgrind: + # name: "valgrind" - runs-on: ubuntu-22.04 + # runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 + # steps: + # - uses: actions/checkout@v3 - - name: Setup Build Agent - uses: ./.github/actions/setup-build-agent - with: - target: valgrind-full - cache-key: linux-x86_64-valgrind-full + # - name: Setup Build Agent + # uses: ./.github/actions/setup-build-agent + # with: + # target: valgrind-full + # cache-key: linux-x86_64-valgrind-full - - name: Valgrind Checks - run: python3 ./src/scripts/ci_build.py --cc=gcc --make-tool=make valgrind-full + # - name: Valgrind Checks + # run: python3 ./src/scripts/ci_build.py --cc=gcc --make-tool=make valgrind-full tls_anvil_server_test: name: "TLS-Anvil - Botan Server Test"