InfiniTime/.github/workflows/c-cpp.yml

67 lines
2.3 KiB
YAML
Raw Normal View History

2020-07-21 20:18:46 +00:00
# GitHub Action to build FreeRTOS Firmware for PineTime Smart Watch
2020-07-21 19:18:01 +00:00
# Based on https://github.com/lupyuen/pinetime-lab/blob/master/doc/buildAndProgram.md
2020-07-21 20:18:46 +00:00
2020-07-21 19:02:38 +00:00
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
2020-07-21 19:51:27 +00:00
- name: Install cmake
2020-07-21 19:18:01 +00:00
uses: lukka/get-cmake@v3.18.0
2020-07-21 19:51:27 +00:00
2020-07-22 02:16:21 +00:00
- name: Check Cache for Embedded Arm Toolchain arm-none-eabi-gcc
id: cache-toolchain
2020-07-21 19:51:27 +00:00
uses: actions/cache@v2
env:
cache-name: cache-toolchain
with:
2020-07-21 20:12:07 +00:00
path: ${{ runner.temp }}/arm-none-eabi
key: ${{ runner.os }}-build-${{ env.cache-name }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}
2020-07-22 02:16:21 +00:00
2020-07-21 19:51:27 +00:00
- name: Install Embedded Arm Toolchain arm-none-eabi-gcc
2020-07-22 02:16:21 +00:00
if: steps.cache-toolchain.outputs.cache-hit != 'true' # Install toolchain if not found in cache
2020-07-21 19:18:01 +00:00
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.
2020-07-21 20:12:07 +00:00
directory: ${{ runner.temp }}/arm-none-eabi
2020-07-21 19:51:27 +00:00
2020-07-22 02:16:21 +00:00
- name: Check Cache for nRF5 SDK
id: cache-nrf5sdk
2020-07-21 20:04:37 +00:00
uses: actions/cache@v2
env:
cache-name: cache-nrf5sdk
with:
2020-07-21 20:12:07 +00:00
path: ${{ runner.temp }}/nrf5_sdk
key: ${{ runner.os }}-build-${{ env.cache-name }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}
2020-07-21 20:04:37 +00:00
- name: Install nRF5 SDK
2020-07-22 02:16:21 +00:00
if: steps.cache-nrf5sdk.outputs.cache-hit != 'true' # Install SDK if not found in cache
2020-07-21 20:12:07 +00:00
run: cd ${{ runner.temp }} && curl https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v15.x.x/nRF5_SDK_15.3.0_59ac345.zip -o nrf5_sdk.zip && unzip nrf5_sdk.zip && mv nRF5_SDK_15.3.0_59ac345 nrf5_sdk
2020-07-21 20:04:37 +00:00
2020-07-21 19:51:27 +00:00
- name: Checkout source files
2020-07-21 19:53:29 +00:00
uses: actions/checkout@v2
2020-07-21 19:51:27 +00:00
2020-07-21 19:18:01 +00:00
- name: Show Files
2020-07-21 20:04:37 +00:00
run: set ; pwd ; ls -l ~
2020-07-21 19:51:27 +00:00
2020-07-22 02:16:21 +00:00
- name: CMake
2020-07-21 20:12:07 +00:00
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 ../
2020-07-21 19:51:27 +00:00
2020-07-22 02:16:21 +00:00
- name: Make -j
run: exit && cd build && make pinetime-app
2020-07-21 19:18:01 +00:00
2020-07-22 02:16:21 +00:00
# Embedded Arm Toolchain and nRF5 SDK will only be cached if the build succeeds