Skip to content

Commit

Permalink
remove buildkite integration
Browse files Browse the repository at this point in the history
  • Loading branch information
aluon committed Jul 19, 2024
1 parent 26aff37 commit fca9c32
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
10 changes: 0 additions & 10 deletions .github/actions/rust-unit-tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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 }}
1 change: 0 additions & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit fca9c32

Please sign in to comment.