Update c-cpp.yml
This commit is contained in:
parent
9760249bf4
commit
fa98ea272d
27
.github/workflows/c-cpp.yml
vendored
27
.github/workflows/c-cpp.yml
vendored
@ -1,3 +1,4 @@
|
|||||||
|
# Based on https://github.com/lupyuen/pinetime-lab/blob/master/doc/buildAndProgram.md
|
||||||
name: C/C++ CI
|
name: C/C++ CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@ -12,12 +13,24 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: get-cmake
|
||||||
|
uses: lukka/get-cmake@v3.18.0
|
||||||
|
- name: arm-none-eabi-gcc
|
||||||
|
uses: fiam/arm-none-eabi-gcc@v1.0.2
|
||||||
|
with:
|
||||||
|
# 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: arm-none-eabi
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: configure
|
- name: Show Files
|
||||||
run: ./configure
|
run: set ; pwd ; ls -l
|
||||||
|
- name: mkdir build
|
||||||
|
run: mkdir build
|
||||||
|
- name: cd build
|
||||||
|
run: cd build
|
||||||
|
- name: cmake
|
||||||
|
run: cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=../arm-none-eabi -DNRF5_SDK_PATH=../nrf5_sdk -DUSE_OPENOCD=1 ../
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make -j pinetime-app
|
||||||
- name: make check
|
|
||||||
run: make check
|
|
||||||
- name: make distcheck
|
|
||||||
run: make distcheck
|
|
||||||
|
Loading…
Reference in New Issue
Block a user