2020-11-28 01:57:22 +11:00
|
|
|
name: Tests
|
|
|
|
|
2020-09-05 13:58:31 +10:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2020-11-29 06:18:18 +11:00
|
|
|
- ".github/workflows/test.yml"
|
2020-09-05 13:58:31 +10:00
|
|
|
- "app/tests/**"
|
|
|
|
- "app/src/**"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2020-11-29 06:18:18 +11:00
|
|
|
- ".github/workflows/test.yml"
|
2020-09-05 13:58:31 +10:00
|
|
|
- "app/tests/**"
|
|
|
|
- "app/src/**"
|
2020-08-29 13:10:25 +10:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
integration_test:
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-11 04:37:30 +11:00
|
|
|
container:
|
2021-10-19 05:08:51 +11:00
|
|
|
image: docker.io/zmkfirmware/zmk-build-arm:2.5
|
2020-08-29 13:10:25 +10:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Cache west modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
env:
|
|
|
|
cache-name: cache-zephyr-modules
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
modules/
|
|
|
|
tools/
|
|
|
|
zephyr/
|
|
|
|
bootloader/
|
2020-12-03 05:26:47 +11:00
|
|
|
key: 4-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }}
|
2020-08-29 13:10:25 +10:00
|
|
|
restore-keys: |
|
2020-12-03 05:26:47 +11:00
|
|
|
4-${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
4-${{ runner.os }}-build-
|
|
|
|
4-${{ runner.os }}-
|
2020-11-28 01:57:22 +11:00
|
|
|
timeout-minutes: 2
|
|
|
|
continue-on-error: true
|
2020-12-12 00:37:29 +11:00
|
|
|
- name: Initialize workspace (west init)
|
2020-12-11 04:37:30 +11:00
|
|
|
run: west init -l app
|
2020-12-12 00:37:29 +11:00
|
|
|
- name: Update modules (west update)
|
2020-12-11 04:37:30 +11:00
|
|
|
run: west update
|
2020-12-12 00:37:29 +11:00
|
|
|
- name: Export Zephyr CMake package (west zephyr-export)
|
2020-12-11 04:37:30 +11:00
|
|
|
run: west zephyr-export
|
2020-11-28 01:57:22 +11:00
|
|
|
- name: Test all
|
2020-12-11 04:37:30 +11:00
|
|
|
run: west test
|
2020-12-12 00:37:29 +11:00
|
|
|
- name: Archive artifacts
|
2020-08-29 13:10:25 +10:00
|
|
|
if: ${{ always() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: "log-files"
|
|
|
|
path: app/build/**/*.log
|