Still working on path issues

This commit is contained in:
PProvost
2020-05-14 14:02:43 -06:00
parent 1bc7f6aa50
commit 1710230620

View File

@@ -59,8 +59,12 @@ jobs:
# Prepare the build system # Prepare the build system
- name: Prepare build system - name: Prepare build system
run: cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=./cmake/cortex_m4.cmake -GNinja . run: cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=./cmake/cortex_m4.cmake -GNinja .
env:
PATH: "$HOME/arm-none-eabi-gcc-9-2019-q4/bin:$PATH"
- name: Compile and link - name: Compile and link
run: cmake --build ./build run: cmake --build ./build
env:
PATH: "$HOME/arm-none-eabi-gcc-9-2019-q4/bin:$PATH"