summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 78f1ed423b189f59a0195c3c2bb19f5434c1e884 (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
55
56
57
58
59
name: Build firmware
on:
  push:
    paths-ignore:
      - '**.md'
  pull_request:
    paths-ignore:
      - '**.md'


jobs:
  build-default:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        keyboard:
          - ergodox_ez
          - ergodox_ez/shine
          - ergodox_ez/glow
          - moonlander
          - planck/ez
          - planck/ez/glow
        keymap:
          - default
          - oryx

    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 1
        persist-credentials: false
        submodules: true

    - name: Build
      id: build
      run: |
        TARGET="${{ matrix.keyboard }}"

        if [ -n "${{ matrix.keymap }}" ]; then
           TARGET="${TARGET}:${{ matrix.keymap }}"
        fi

        sed -i 's/run --rm -it/run --rm/' util/docker_build.sh
        util/docker_build.sh ${TARGET}

        ls

        echo ::set-output name=artifact-name::${TARGET//[:<>|*?\\\/]/_}
        echo "Artifact-name: ${{ steps.build.outputs.artifact-name }}"

    - name: Archive artifacts
      uses: actions/upload-artifact@v2
      with:
        name: "${{ steps.build.outputs.artifact-name }}"
        path: |
          *.hex
          *.bin
      continue-on-error: true