diff options
author | Peter Johanson <[email protected]> | 2022-04-03 04:17:36 +0000 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2022-04-04 23:36:51 -0400 |
commit | 3eb3548a00c6fdfcfed6e94cecbc5e3667709cb3 (patch) | |
tree | d453b3b5c9d79064bd43b6fbb55c7af5f57f511c /.github/workflows/test.yml | |
parent | 27ba5fdfb3f8d828636a2f433603268ddf30fa3b (diff) | |
download | zmk-3eb3548a00c6fdfcfed6e94cecbc5e3667709cb3.tar.gz zmk-3eb3548a00c6fdfcfed6e94cecbc5e3667709cb3.zip |
refactor(tests): Use GH Actions matrix for tests.
* To parallelize our tests, generate a dynamic matrix
of tests to run.
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cbe60d047a..61bf71831d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,24 @@ on: - "app/src/**" 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 container: image: docker.io/zmkfirmware/zmk-build-arm:3.0 @@ -43,8 +60,9 @@ jobs: run: west update - name: Export Zephyr CMake package (west zephyr-export) run: west zephyr-export - - name: Test all - run: west test + - name: Test ${{ matrix.test }} + working-directory: app + run: west test tests/${{ matrix.test }} - name: Archive artifacts if: ${{ always() }} uses: actions/upload-artifact@v2 |