From aae638b8505103fe11783cab9b705cde730ac9ed Mon Sep 17 00:00:00 2001 From: Adam Saleh Date: Sep 19 2022 14:05:09 +0000 Subject: Simplify the action to bare bones --- diff --git a/.github/workflows/centos-stream8.yml b/.github/workflows/centos-stream8.yml index 283ada3..03e0eb6 100644 --- a/.github/workflows/centos-stream8.yml +++ b/.github/workflows/centos-stream8.yml @@ -5,13 +5,7 @@ jobs: steps: - uses: "actions/checkout@v2" - run: sudo dnf -y install python3-pip - - run: sudo pip install each - - run: ls -x1 tests | grep "^0_" > testlist - - run: each -j 4 --no-stdin testlist "sudo sh -c 'cd /opt && ./runtests.sh {}'" - - run: find . -type f -name "status" -exec grep '1' "{}" \; -exec dirname "{}" \; - - run: find . -type f -name "status" -exec grep '1' "{}" \; -exec dirname "{}" \; > failed_tests - - run: cat failed_tests | grep -v "^1" | xargs -i tail {}/out - - run: "! [[ -s failed_tests ]]" + - run: sudo sh -c 'cd /opt && ./runtests.sh {}' name: Greeting on: