summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: e4ef85a3bb4a9044e897bb2dab49227ddca359aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# GitHub Actions Workflow to build FreeRTOS Firmware for PineTime Smart Watch
# See https://lupyuen.github.io/pinetime-rust-mynewt/articles/cloud
# Based on https://github.com/JF002/InfiniTime/blob/master/doc/buildAndProgram.md
# and https://github.com/JF002/InfiniTime/blob/master/bootloader/README.md

# Name of this Workflow
name: Build PineTime Firmware

# When to run this Workflow...
on:

  # Run this Workflow when files are updated (Pushed) in the "master" and "develop" Branch
  push:
    branches: [ master, develop ]

  # Also run this Workflow when a Pull Request is created or updated in the "master" and "develop" Branch
  pull_request:
    branches: [ master, develop ]

# Steps to run for the Workflow
jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: infinitime/infinitime-build
    steps:
      # 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).
      - name: Workaround permission issues
        run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
      - name: Checkout source files
        uses: actions/checkout@v2
        with:
          submodules: recursive
      - name: Build
        shell: bash
        env:
          SOURCES_DIR: .
        run: |
          /opt/build.sh all
      - name: Upload DFU artifacts
        uses: actions/upload-artifact@v2
        with:
          name: InfiniTime DFU file
          path: |
            ./build/output/pinetime-mcuboot-app-dfu-*.zip
      - name: Upload MCUBoot image artifacts
        uses: actions/upload-artifact@v2
        with:
          name: InfiniTime MCUBoot image file
          path: |
            ./build/output/pinetime-mcuboot-app-image-*.bin