2020-09-27 11:10:00 +00:00
|
|
|
# GitHub Actions Workflow to build FreeRTOS Firmware for PineTime Smart Watch
|
|
|
|
# See https://lupyuen.github.io/pinetime-rust-mynewt/articles/cloud
|
2021-03-15 23:07:04 +00:00
|
|
|
# Based on https://github.com/JF002/InfiniTime/blob/master/doc/buildAndProgram.md
|
|
|
|
# and https://github.com/JF002/InfiniTime/blob/master/bootloader/README.md
|
2020-09-27 11:10:00 +00:00
|
|
|
|
|
|
|
name: Build PineTime Firmware
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-09-10 21:42:49 +00:00
|
|
|
branches: [ master, develop ]
|
2020-09-27 11:10:00 +00:00
|
|
|
pull_request:
|
2021-09-10 21:42:49 +00:00
|
|
|
branches: [ master, develop ]
|
2020-09-27 11:10:00 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-05-15 08:50:12 +00:00
|
|
|
container:
|
2022-05-18 19:53:06 +00:00
|
|
|
image: infinitime/infinitime-build
|
2020-09-27 11:10:00 +00:00
|
|
|
steps:
|
2022-05-15 09:05:10 +00:00
|
|
|
# This workaround fixes the error "unsafe repository (REPO is owned by someone else)".
|
|
|
|
# See https://github.com/actions/checkout/issues/760 and https://github.com/actions/checkout/issues/766
|
|
|
|
# The fix in "actions/checkout@v2" was not sufficient as the build process also uses git (to get the current
|
|
|
|
# commit hash, for example).
|
2022-05-15 08:50:12 +00:00
|
|
|
- name: Workaround permission issues
|
|
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
2020-09-27 11:10:00 +00:00
|
|
|
- name: Checkout source files
|
|
|
|
uses: actions/checkout@v2
|
2021-08-14 12:47:00 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2022-05-15 08:50:12 +00:00
|
|
|
- name: Build
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SOURCES_DIR: .
|
2022-05-27 08:36:55 +00:00
|
|
|
run: /opt/build.sh all
|
2022-05-27 08:31:17 +00:00
|
|
|
# Unzip the package because Upload Artifact will zip up the files
|
|
|
|
- name: Unzip DFU package
|
|
|
|
run: unzip ./build/output/pinetime-mcuboot-app-dfu-*.zip -d ./build/output/pinetime-mcuboot-app-dfu
|
2022-05-15 08:50:12 +00:00
|
|
|
- name: Upload DFU artifacts
|
2022-05-02 09:26:45 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-09-27 11:10:00 +00:00
|
|
|
with:
|
2022-05-02 09:26:45 +00:00
|
|
|
name: InfiniTime DFU ${{ github.head_ref }}
|
2022-05-27 08:31:17 +00:00
|
|
|
path: ./build/output/pinetime-mcuboot-app-dfu/*
|
2022-05-15 08:50:12 +00:00
|
|
|
- name: Upload MCUBoot image artifacts
|
2022-05-02 09:26:45 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-09-27 11:10:00 +00:00
|
|
|
with:
|
2022-05-02 09:26:45 +00:00
|
|
|
name: InfiniTime MCUBoot image ${{ github.head_ref }}
|
2022-05-27 08:36:55 +00:00
|
|
|
path: ./build/output/pinetime-mcuboot-app-image-*.bin
|