Blame .github/workflows/centos-stream8.yml

9140f8
jobs:
9140f8
  test_0:
9140f8
    name: test_0
9140f8
    runs-on: stream-8
9140f8
    steps:
9140f8
      - uses: "actions/checkout@v2"
6a5d0f
      - run: sudo dnf -y install pip
6a5d0f
      - run: sudo pip install each
9140f8
      - run: ls -x1 tests | grep "^0_" > testlist
6a5d0f
      - run: each -j 4 --no-stdin testlist "sudo sh -c 'cd /opt && ./runtests.sh {}'"
9140f8
      - run: find . -type f -name "status" -exec grep '1' "{}" \; -exec dirname "{}" \;
9140f8
      - run: find . -type f -name "status" -exec grep '1' "{}" \; -exec dirname "{}" \; > failed_tests
9140f8
      - run: cat failed_tests | grep -v "^1" | xargs -i tail {}/out
9140f8
      - run: "! [[ -s failed_tests ]]"
9140f8
9140f8
name: Greeting
9140f8
on:
9140f8
  push: {}