From b1f6053b04e45515a06eed1a3045c94e60abb2b5 Mon Sep 17 00:00:00 2001 From: Lucas Date: Tue, 28 Jan 2025 12:27:06 -0300 Subject: [PATCH] Remove tests --- .github/workflows/main.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 114e2c279db..d83b1a3431f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -91,23 +91,23 @@ jobs: - run: rustup update stable && rustup default stable - run: cargo update -p cargo --locked - check-version-bump: - runs-on: ubuntu-latest - env: - BASE_SHA: ${{ github.event.pull_request.base.sha }} - HEAD_SHA: ${{ github.event.pull_request.head.sha != '' && github.event.pull_request.head.sha || github.sha }} - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - run: rustup toolchain install 1.78.0 && rustup default 1.78.0 - - name: Install cargo-semver-checks - run: | - mkdir installed-bins - curl -Lf https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.29.0/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz \ - | tar -xz --directory=./installed-bins - echo `pwd`/installed-bins >> $GITHUB_PATH - - run: ci/validate-version-bump.sh +# check-version-bump: +# runs-on: ubuntu-latest +# env: +# BASE_SHA: ${{ github.event.pull_request.base.sha }} +# HEAD_SHA: ${{ github.event.pull_request.head.sha != '' && github.event.pull_request.head.sha || github.sha }} +# steps: +# - uses: actions/checkout@v4 +# with: +# fetch-depth: 0 +# - run: rustup toolchain install 1.78.0 && rustup default 1.78.0 +# - name: Install cargo-semver-checks +# run: | +# mkdir installed-bins +# curl -Lf https://github.com/obi1kenobi/cargo-semver-checks/releases/download/v0.29.0/cargo-semver-checks-x86_64-unknown-linux-gnu.tar.gz \ +# | tar -xz --directory=./installed-bins +# echo `pwd`/installed-bins >> $GITHUB_PATH +# - run: ci/validate-version-bump.sh test: runs-on: ${{ matrix.os }} @@ -192,7 +192,7 @@ jobs: run: | # This only tests one benchmark since it can take over 10 minutes to # download all workspaces. - cargo test -p benchsuite --all-targets -- cargo +# cargo test -p benchsuite --all-targets -- cargo cargo check -p capture # The testsuite generates a huge amount of data, and fetch-smoke-test was # running out of disk space.