summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: f5bd3d87e6319ef586b50472a8ccd49f693049d7 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
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

    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

  build-oryx:
    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:
          - 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