Browse Source

refactor(tests): Use GH Actions matrix for tests.

* To parallelize our tests, generate a dynamic matrix
  of tests to run.
xmkb
Peter Johanson 2 years ago committed by Pete Johanson
parent
commit
3eb3548a00
  1. 24
      .github/workflows/test.yml
  2. 2
      app/run-test.sh

24
.github/workflows/test.yml

@ -13,7 +13,24 @@ on:
- "app/src/**" - "app/src/**"
jobs: jobs:
integration_test: collect-tests:
outputs:
test-dirs: ${{ steps.test-dirs.outputs.test-dirs }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Find test directories
id: test-dirs
run: |
cd app/tests/
export TESTS=$(ls -d * | jq -R -s -c 'split("\n")[:-1]')
echo "::set-output name=test-dirs::${TESTS}"
run-tests:
needs: collect-tests
strategy:
matrix:
test: ${{ fromJSON(needs.collect-tests.outputs.test-dirs) }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: docker.io/zmkfirmware/zmk-build-arm:3.0 image: docker.io/zmkfirmware/zmk-build-arm:3.0
@ -43,8 +60,9 @@ jobs:
run: west update run: west update
- name: Export Zephyr CMake package (west zephyr-export) - name: Export Zephyr CMake package (west zephyr-export)
run: west zephyr-export run: west zephyr-export
- name: Test all - name: Test ${{ matrix.test }}
run: west test working-directory: app
run: west test tests/${{ matrix.test }}
- name: Archive artifacts - name: Archive artifacts
if: ${{ always() }} if: ${{ always() }}
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2

2
app/run-test.sh

@ -15,7 +15,7 @@ fi
testcases=$(find $path -name native_posix_64.keymap -exec dirname \{\} \;) testcases=$(find $path -name native_posix_64.keymap -exec dirname \{\} \;)
num_cases=$(echo "$testcases" | wc -l) num_cases=$(echo "$testcases" | wc -l)
if [ $num_cases -gt 1 ]; then if [ $num_cases -gt 1 ] || [ "$testcases" != "$path" ]; then
echo "" > ./build/tests/pass-fail.log echo "" > ./build/tests/pass-fail.log
echo "$testcases" | xargs -L 1 -P ${J:-4} ./run-test.sh echo "$testcases" | xargs -L 1 -P ${J:-4} ./run-test.sh
err=$? err=$?

Loading…
Cancel
Save