ci: Don't run the GNU/bfs testsuites twice

This commit is contained in:
Tavian Barnes
2022-02-22 13:42:39 -05:00
parent 7be2715f07
commit 193aaf2aa0
2 changed files with 1 additions and 37 deletions
-36
View File
@@ -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
+1 -1
View File
@@ -1,6 +1,6 @@
on: [push, pull_request]
name: GNU findutils compatibility tests
name: External testsuites
jobs:
gnu-tests: