summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLee Lup Yuen <luppy@appkaki.com>2020-07-22 02:34:09 (GMT)
committerGitHub <noreply@github.com>2020-07-22 02:34:09 (GMT)
commit9d4e4f0637971fa8319f4cb65c12348cc8e5158e (patch)
tree66c66120ffc7f1d3158b6819bcc99ce05a1ddfaa /.github/workflows
parent03bfc7e3db988b5ab387a7a69425f7ab21b6d1fa (diff)
Fixing include error
/home/runner/work/pinetime-lab/pinetime-lab/src/drivers/TwiMaster.cpp:1:10: fatal error: sdk/integration/nrfx/nrfx_log.h: No such file or directory #include <sdk/integration/nrfx/nrfx_log.h>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/c-cpp.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index d9c455d..9f4b322 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -59,13 +59,13 @@ jobs:
- name: Show Files
run: set ; pwd ; ls -l
-
+
- name: CMake
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: cd build && make pinetime-app
-
+ run: cd build && make --trace pinetime-app
+
- name: Upload the Built Firmware
uses: actions/upload-artifact@v2
with: