From 99e2d5fc681ff78aa76e31ef358559bf40c958f4 Mon Sep 17 00:00:00 2001 From: Alan Luong Date: Fri, 19 Jul 2024 16:37:31 -0400 Subject: [PATCH] remove buildkite integration (#14054) --- .github/actions/rust-unit-tests/action.yaml | 10 ---------- .github/workflows/lint-test.yaml | 1 - 2 files changed, 11 deletions(-) diff --git a/.github/actions/rust-unit-tests/action.yaml b/.github/actions/rust-unit-tests/action.yaml index 5ea7e56d47962..793937650c2c4 100644 --- a/.github/actions/rust-unit-tests/action.yaml +++ b/.github/actions/rust-unit-tests/action.yaml @@ -4,9 +4,6 @@ inputs: GIT_CREDENTIALS: description: "Optional credentials to pass to git. Useful if you need to pull private repos for dependencies" required: false - BUILDKITE_ANALYTICS_TOKEN: - description: "The Buildkite API token" - required: true runs: using: composite @@ -31,11 +28,6 @@ runs: with: tool: nextest - # Install buildkite-test-collector - - name: Install buildkite-test-collector - run: cargo install buildkite-test-collector - shell: bash - # Run a postgres database - name: Run postgres database run: docker run --detach -p 5432:5432 cimg/postgres:14.2 @@ -45,7 +37,6 @@ runs: - name: Run all unit tests run: | NEXTEST_EXPERIMENTAL_LIBTEST_JSON=1 cargo nextest run --profile ci --cargo-profile ci --locked --workspace --exclude smoke-test --exclude aptos-testcases --exclude aptos-keyless-circuit --retries 3 --no-fail-fast --message-format libtest-json > nextest_output.json || python3 .github/actions/rust-unit-tests/nextest_summary.py nextest_output.json "$GITHUB_STEP_SUMMARY" -f - buildkite-test-collector < nextest_output.json || echo "Warning: buildkite-test-collector encountered an error" python3 .github/actions/rust-unit-tests/nextest_summary.py nextest_output.json "$GITHUB_STEP_SUMMARY" || echo "summary generation had an error" rm nextest_output.json shell: bash @@ -58,4 +49,3 @@ runs: CVC5_EXE: /home/runner/bin/cvc5 DOTNET_ROOT: /home/runner/.dotnet BOOGIE_EXE: /home/runner/.dotnet/tools/boogie - BUILDKITE_ANALYTICS_TOKEN: ${{ inputs.BUILDKITE_ANALYTICS_TOKEN }} diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index bdfc0d7dfe246..bedccdcaa3319 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -170,7 +170,6 @@ jobs: uses: ./.github/actions/rust-unit-tests with: GIT_CREDENTIALS: ${{ secrets.GIT_CREDENTIALS }} - BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }} # Run the cached packages build. This is a PR required job. rust-build-cached-packages: