|
|
@ -4,10 +4,9 @@ permissions: |
|
|
|
contents: read |
|
|
|
contents: read |
|
|
|
|
|
|
|
|
|
|
|
on: |
|
|
|
on: |
|
|
|
push: |
|
|
|
workflow_dispatch: |
|
|
|
branches: |
|
|
|
schedule: |
|
|
|
- master |
|
|
|
- cron: '0 0,12 * * *' |
|
|
|
- develop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
jobs: |
|
|
|
ci_builds: |
|
|
|
ci_builds: |
|
|
@ -18,7 +17,9 @@ jobs: |
|
|
|
if: github.repository == 'qmk/qmk_firmware' |
|
|
|
if: github.repository == 'qmk/qmk_firmware' |
|
|
|
|
|
|
|
|
|
|
|
strategy: |
|
|
|
strategy: |
|
|
|
|
|
|
|
fail-fast: false |
|
|
|
matrix: |
|
|
|
matrix: |
|
|
|
|
|
|
|
branch: [master, develop] |
|
|
|
keymap: [default, via] |
|
|
|
keymap: [default, via] |
|
|
|
|
|
|
|
|
|
|
|
container: ghcr.io/qmk/qmk_cli |
|
|
|
container: ghcr.io/qmk/qmk_cli |
|
|
@ -30,19 +31,24 @@ jobs: |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
with: |
|
|
|
with: |
|
|
|
submodules: recursive |
|
|
|
submodules: recursive |
|
|
|
|
|
|
|
ref: ${{ matrix.branch }} |
|
|
|
|
|
|
|
|
|
|
|
- name: Install dependencies |
|
|
|
- name: Install dependencies |
|
|
|
run: pip3 install -r requirements.txt |
|
|
|
run: pip3 install -r requirements.txt |
|
|
|
|
|
|
|
|
|
|
|
- name: Run `qmk mass-compile` (keymap ${{ matrix.keymap }}) |
|
|
|
- name: Run `qmk mass-compile` (keymap ${{ matrix.keymap }}) |
|
|
|
run: qmk mass-compile -j $(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null) -km ${{ matrix.keymap }} |
|
|
|
run: | |
|
|
|
|
|
|
|
export NCPUS=$(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null) |
|
|
|
|
|
|
|
qmk mass-compile -t -j $NCPUS -km ${{ matrix.keymap }} |
|
|
|
|
|
|
|
|
|
|
|
- name: 'Upload binaries' |
|
|
|
- name: 'Upload artifacts' |
|
|
|
uses: actions/upload-artifact@v3 |
|
|
|
uses: actions/upload-artifact@v3 |
|
|
|
|
|
|
|
if: always() |
|
|
|
with: |
|
|
|
with: |
|
|
|
name: binaries-${{ matrix.keymap }} |
|
|
|
name: artifacts-${{ matrix.branch }}-${{ matrix.keymap }} |
|
|
|
if-no-files-found: ignore |
|
|
|
if-no-files-found: ignore |
|
|
|
path: | |
|
|
|
path: | |
|
|
|
*.bin |
|
|
|
*.bin |
|
|
|
*.hex |
|
|
|
*.hex |
|
|
|
*.uf2 |
|
|
|
*.uf2 |
|
|
|
|
|
|
|
.build/failed.* |
|
|
|