aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/test.yml
blob: 0df1f0c640c5af7cc31c9165de2d69e1b8b95e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Tests

on:
  push:
    paths:
      - ".github/workflows/test.yml"
      - "app/tests/**"
      - "app/src/**"
      - "app/include/**"
  pull_request:
    paths:
      - ".github/workflows/test.yml"
      - "app/tests/**"
      - "app/src/**"
      - "app/include/**"

jobs:
  collect-tests:
    outputs:
      test-dirs: ${{ steps.test-dirs.outputs.test-dirs }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Find test directories
        id: test-dirs
        run: |
          cd app/tests/
          export TESTS=$(ls -d * | grep -v ble | jq -R -s -c 'split("\n")[:-1]')
          echo "test-dirs=${TESTS}" >> $GITHUB_OUTPUT
  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.5
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Cache west modules
        uses: actions/cache@v4
        env:
          cache-name: cache-zephyr-modules
        with:
          path: |
            modules/
            tools/
            zephyr/
            bootloader/
          key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }}
          restore-keys: |
            ${{ runner.os }}-build-${{ env.cache-name }}-
            ${{ runner.os }}-build-
            ${{ runner.os }}-
        timeout-minutes: 2
        continue-on-error: true
      - name: Initialize workspace (west init)
        run: west init -l app
      - name: Update modules (west update)
        run: west update
      - name: Export Zephyr CMake package (west zephyr-export)
        run: west zephyr-export
      - name: Test ${{ matrix.test }}
        working-directory: app
        run: west test tests/${{ matrix.test }}
      - name: Archive artifacts
        if: ${{ always() }}
        uses: actions/upload-artifact@v4
        with:
          name: "${{ matrix.test }}-log-files"
          path: app/build/**/*.log