33 lines
973 B
YAML
33 lines
973 B
YAML
# Based on https://github.com/lupyuen/pinetime-lab/blob/master/doc/buildAndProgram.md
|
|
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
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: ${{ 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=${{ env.HOME }}/arm-none-eabi -DNRF5_SDK_PATH=${{ env.HOME }}/nrf5_sdk -DUSE_OPENOCD=1 ../
|
|
- name: make
|
|
run: cd build && make -j pinetime-app
|
|
|