diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-12-11 11:09:07 -0500 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-28 14:51:43 -0500 |
commit | 9a9f155e696935f4b576b4213b5256af8adbca93 (patch) | |
tree | 054be7528eb44abc2904c4ddeaefe4a7d471b208 /.github | |
parent | 0e71dbc860e19f8eb269841a15b9fccd9ef7d37f (diff) |
feature(ci): Build split w/ display enabled for testing.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac5bded..0aee5d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,6 +55,7 @@ jobs: - splitreus62_right - tg4x - tidbit + cmake-args: [""] include: - board: dz60rgb_rev1 - board: nrf52840_m2 @@ -62,6 +63,14 @@ jobs: - board: planck_rev6 - board: proton_c shield: clueboard_california + - board: nice_nano + shield: kyria_left + cmake-args: -DCONFIG_ZMK_DISPLAY=y + skip-archive: true + - board: nice_nano + shield: kyria_right + cmake-args: -DCONFIG_ZMK_DISPLAY=y + skip-archive: true steps: - name: Checkout uses: actions/checkout@v2 @@ -104,8 +113,9 @@ jobs: echo ::set-output name=shield-arg::${SHIELD_ARG} echo ::set-output name=artifact-name::${ARTIFACT_NAME} - name: Build (west build) - run: west build -s app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }} + run: west build -s app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }} ${{ matrix.cmake-args }} - name: Archive artifacts + if: ${{ !matrix.skip-archive }} uses: actions/upload-artifact@v2 with: name: "${{ steps.variables.outputs.artifact-name }}" |