summaryrefslogtreecommitdiff
path: root/.github/workflows/c-cpp.yml
diff options
context:
space:
mode:
authorLee Lup Yuen <luppy@appkaki.com>2020-07-22 02:21:32 (GMT)
committerGitHub <noreply@github.com>2020-07-22 02:21:32 (GMT)
commite5930d54edc1474496b1876c2dcb2102974287cb (patch)
tree79c52cb93f182f59cc08f778c990bd6dbf777356 /.github/workflows/c-cpp.yml
parent774325eb125aa748539023e043b8c1cabf8535d4 (diff)
Update c-cpp.yml
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r--.github/workflows/c-cpp.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index b6b9746..f29f554 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -64,6 +64,7 @@ jobs:
run: mkdir -p build && cd build && cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=${{ runner.temp }}/arm-none-eabi -DNRF5_SDK_PATH=${{ runner.temp }}/nrf5_sdk -DUSE_OPENOCD=1 ../
- name: Make -j
- run: exit && cd build && make pinetime-app
+ run: cd build && make pinetime-app
-# Embedded Arm Toolchain and nRF5 SDK will only be cached if the build succeeds
+# Embedded Arm Toolchain and nRF5 SDK will only be cached if the build succeeds.
+# So make sure that the first build always succeeds, e.g. comment out the "Make" step.