summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLee Lup Yuen <luppy@appkaki.com>2020-07-26 14:40:44 (GMT)
committerGitHub <noreply@github.com>2020-07-26 14:40:44 (GMT)
commit1e0ec474b35e069755da0a356af6f62ef1a0ff42 (patch)
tree8045d49cba03c1fceca60d5e24d67f4e6886435b /.github/workflows
parent7ed2ee539f43681d3eb980c6fa1df2ac1ba7e48a (diff)
Disable parallel build
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index deb3a8a..d7252f0 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -69,8 +69,9 @@ 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
- # For debugging builds, remove option "-j" for clearer output. Add "--trace" to see details.
- run: cd build && make -j pinetime-app
+ # For Debugging Builds: Remove "make" option "-j" for clearer output. Add "--trace" to see details.
+ # For Faster Builds: Add "make" option "-j"
+ run: cd build && make pinetime-app
- name: Find output
run: find . -name pinetime-app.out