From 193aaf2aa0a2bb4c1dd137327ce3d40e3decc491 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 22 Feb 2022 13:42:39 -0500 Subject: [PATCH] ci: Don't run the GNU/bfs testsuites twice --- .github/workflows/ci.yml | 36 ------------------------------------ .github/workflows/compat.yml | 2 +- 2 files changed, 1 insertion(+), 37 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c994bf7..c91e42f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,39 +159,3 @@ jobs: # file: ${{ steps.grcov.outputs.report }} file: lcov.info fail_ci_if_error: true - - external: - name: External testsuites - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: - - ubuntu-latest - toolchain: - - nightly - cargo_flags: - - "--all-features" - steps: - - name: Checkout source code - uses: actions/checkout@v2 - - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: ${{ matrix.toolchain }} - override: true - - - name: Run the gnu testsuite - id: gnu - run: | - sudo apt install autopoint - git clone https://git.savannah.gnu.org/git/findutils.git ../findutils.gnu - bash util/build-gnu.sh || true - - - name: Run the bfs testsuite - id: bfs - run: | - sudo apt install acl libacl1-dev attr libattr1-dev libcap2-bin libcap-dev - git clone https://github.com/tavianator/bfs.git ../bfs - bash util/build-bfs.sh || true diff --git a/.github/workflows/compat.yml b/.github/workflows/compat.yml index 48549c5..7bf4a86 100644 --- a/.github/workflows/compat.yml +++ b/.github/workflows/compat.yml @@ -1,6 +1,6 @@ on: [push, pull_request] -name: GNU findutils compatibility tests +name: External testsuites jobs: gnu-tests: