Update c-cpp.yml

This commit is contained in:
Lee Lup Yuen 2020-07-22 03:35:08 +08:00 committed by GitHub
parent 372a3c7c8d
commit 596bf8e8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,12 +21,12 @@ jobs:
# GNU Embedded Toolchain for Arm release name, in the V-YYYY-qZ format (e.g. "9-2019-q4")
release: 8-2019-q3
# Directory to unpack GCC to. Defaults to a temporary directory.
directory: $HOME/arm-none-eabi
directory: ${{ env.HOME }}/arm-none-eabi
- uses: actions/checkout@v2
- name: Show Files
run: set ; pwd ; ls -l $HOME
- name: cmake
run: mkdir -p build && cd build && cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=$HOME/arm-none-eabi -DNRF5_SDK_PATH=$HOME/nrf5_sdk -DUSE_OPENOCD=1 ../
run: mkdir -p build && cd build && cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=${{ env.HOME }}/arm-none-eabi -DNRF5_SDK_PATH=${{ env.HOME }}/nrf5_sdk -DUSE_OPENOCD=1 ../
- name: make
run: cd build && make -j pinetime-app