summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-06-12 16:54:23 -0400
committerPete Johanson <peter@peterjohanson.com>2020-06-12 16:54:23 -0400
commit2ce8961aba93e76a204e16ee9f2cf31d9a3a09bb (patch)
tree3b178f1f84456e395a5e03625433d20a86293ca1
parent44ebcb8fa456e21945b10fe0f6e7e6566e47864d (diff)
Switch to ARM only, use everywhere.
-rw-r--r--.github/workflows/build.yml18
1 files changed, 8 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ced0726..ef415ac 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -27,7 +27,7 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: West Init
- uses: 'docker://zmkfirmware/zephyr-west-action:latest'
+ uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
id: west-init
with:
args: "init -l app"
@@ -35,21 +35,19 @@ jobs:
uses: zmkfirmware/zephyr-west-action@v0.1.0
id: west-update
with:
- command: 'update'
+ args: 'update'
- name: West Config Zephyr Base
- uses: zmkfirmware/zephyr-west-action@v0.1.0
+ uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
id: west-config
with:
- command: 'config'
- command-args: '--global zephyr.base-prefer configfile'
+ args: 'config --global zephyr.base-prefer configfile'
- name: West Zephyr Export
- uses: zmkfirmware/zephyr-west-action@v0.1.0
+ uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
id: west-zephyr-export
with:
- command: 'zephyr-export'
+ args: 'zephyr-export'
- name: West Build
- uses: zmkfirmware/zephyr-west-action@v0.1.0
+ uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
id: west-build
with:
- command: 'build'
- command-args: '-s app -b proton_c -- -DSHIELD=petejohanson_proton_handwire'
+ args: 'build -s app -b proton_c -- -DSHIELD=petejohanson_proton_handwire'