Skip to content

Commit

Permalink
maybe maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesmst committed Jan 3, 2024
1 parent 9380b71 commit 55b267b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/build-boards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: zephyrprojectrtos/zephyr-build:latest

image: zmkfirmware/zmk-build-arm:stable
needs: matrix
name: Build
strategy:
Expand All @@ -72,6 +71,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Cache west modules
uses: actions/cache@v3.0.11
continue-on-error: true
env:
cache_name: cache-zephyr-${{ env.zephyr_version }}-modules
with:
path: |
modules/
tools/
zephyr/
bootloader/
key: ${{ runner.os }}-build-${{ env.cache_name }}-${{ hashFiles('**/west.yml', '**/build.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache_name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: West Init
run: west init -l ${{ inputs.config_path }}

Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ manifest:
projects:
- name: zephyr
remote: zephyrproject-rtos
revision: v3.5
revision: main
import: true

0 comments on commit 55b267b

Please sign in to comment.