2024-05-06 09:24:53 +02:00
|
|
|
name: CI Build Major Branch
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
actions: write
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master, develop]
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
branch:
|
|
|
|
type: choice
|
|
|
|
description: "Branch to build"
|
|
|
|
options: [master, develop]
|
|
|
|
|
|
|
|
env:
|
|
|
|
# https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration#usage-limits
|
|
|
|
# We've decreased it from 20 to 15 to allow for other GHA to run unimpeded
|
|
|
|
CONCURRENT_JOBS: 15
|
|
|
|
|
|
|
|
# Ensure we only have one build running at a time, cancelling any active builds if a new commit is pushed to the respective branch
|
|
|
|
concurrency:
|
|
|
|
group: ci_build-${{ github.event.inputs.branch || github.ref_name }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
determine_concurrency:
|
|
|
|
name: "Determine concurrency"
|
|
|
|
if: github.repository == 'qmk/qmk_firmware'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: ghcr.io/qmk/qmk_cli
|
|
|
|
|
|
|
|
outputs:
|
|
|
|
slice_length: ${{ steps.generate_slice_length.outputs.slice_length }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install prerequisites
|
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y jq
|
|
|
|
|
|
|
|
- name: Disable safe.directory check
|
|
|
|
run: |
|
|
|
|
git config --global --add safe.directory '*'
|
|
|
|
|
|
|
|
- name: Checkout QMK Firmware
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Determine concurrency
|
|
|
|
id: generate_slice_length
|
|
|
|
run: |
|
|
|
|
target_count=$( {
|
|
|
|
qmk find -km default 2>/dev/null
|
2024-07-12 01:19:04 +02:00
|
|
|
# qmk find -km xap 2>/dev/null
|
2024-05-06 09:24:53 +02:00
|
|
|
} | sort | uniq | wc -l)
|
2024-07-12 01:19:04 +02:00
|
|
|
slice_length=$((target_count / ($CONCURRENT_JOBS - 1))) # Err on the side of caution
|
2024-05-06 09:24:53 +02:00
|
|
|
echo "slice_length=$slice_length" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
build_targets:
|
|
|
|
name: "Compile keymap ${{ matrix.keymap }}"
|
|
|
|
needs: determine_concurrency
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2024-07-12 01:19:04 +02:00
|
|
|
keymap: [default]
|
|
|
|
# keymap: [default, xap]
|
2024-05-06 09:24:53 +02:00
|
|
|
uses: ./.github/workflows/ci_build_major_branch_keymap.yml
|
|
|
|
with:
|
|
|
|
branch: ${{ inputs.branch || github.ref_name }}
|
|
|
|
keymap: ${{ matrix.keymap }}
|
|
|
|
slice_length: ${{ needs.determine_concurrency.outputs.slice_length }}
|
2024-05-07 00:45:17 +02:00
|
|
|
secrets: inherit
|
2024-05-06 09:24:53 +02:00
|
|
|
|
|
|
|
rollup_tasks:
|
2024-05-07 04:23:56 +02:00
|
|
|
name: "Consolidation"
|
2024-05-06 09:24:53 +02:00
|
|
|
needs: build_targets
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-07-11 15:43:26 +02:00
|
|
|
- name: Disable safe.directory check
|
|
|
|
run: |
|
|
|
|
git config --global --add safe.directory '*'
|
|
|
|
|
|
|
|
- name: Checkout QMK Firmware
|
|
|
|
uses: actions/checkout@v4
|
2024-07-12 01:01:20 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-07-11 15:43:26 +02:00
|
|
|
|
2024-05-06 09:24:53 +02:00
|
|
|
- name: Download firmwares
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
pattern: firmware-*
|
2024-07-11 15:43:26 +02:00
|
|
|
path: .
|
2024-05-06 09:24:53 +02:00
|
|
|
merge-multiple: true
|
|
|
|
|
2024-07-11 15:43:26 +02:00
|
|
|
- name: Generate index page
|
|
|
|
run: |
|
|
|
|
python3 -m pip install -r ./util/ci/requirements.txt
|
|
|
|
./util/ci/index_generator.py > index.html
|
2024-07-12 00:48:43 +02:00
|
|
|
./util/ci/firmware_list_generator.py > firmware_list.json
|
2024-07-11 15:43:26 +02:00
|
|
|
|
2024-05-06 09:24:53 +02:00
|
|
|
- name: Upload to https://ci.qmk.fm/${{ inputs.branch || github.ref_name }}/${{ github.sha }}
|
|
|
|
uses: jakejarvis/s3-sync-action@master
|
|
|
|
with:
|
2024-07-12 00:48:43 +02:00
|
|
|
args: --acl public-read --follow-symlinks --delete --exclude '*' --include 'index.html' --include 'firmware_list.json' --include '*.hex' --include '*.bin' --include '*.uf2'
|
2024-05-06 09:24:53 +02:00
|
|
|
env:
|
2024-05-07 04:23:56 +02:00
|
|
|
AWS_S3_BUCKET: ${{ vars.CI_QMK_FM_SPACES_BUCKET }}
|
2024-05-06 09:24:53 +02:00
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.CI_QMK_FM_SPACES_KEY }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_QMK_FM_SPACES_SECRET }}
|
2024-05-07 04:23:56 +02:00
|
|
|
AWS_REGION: ${{ vars.CI_QMK_FM_SPACES_REGION }}
|
|
|
|
AWS_S3_ENDPOINT: ${{ vars.CI_QMK_FM_SPACES_ENDPOINT }}
|
2024-07-11 15:43:26 +02:00
|
|
|
SOURCE_DIR: .
|
2024-05-06 09:24:53 +02:00
|
|
|
DEST_DIR: ${{ inputs.branch || github.ref_name }}/${{ github.sha }}
|
|
|
|
|
|
|
|
- name: Upload to https://ci.qmk.fm/${{ inputs.branch || github.ref_name }}/latest
|
|
|
|
uses: jakejarvis/s3-sync-action@master
|
|
|
|
with:
|
2024-07-12 00:48:43 +02:00
|
|
|
args: --acl public-read --follow-symlinks --delete --exclude '*' --include 'index.html' --include 'firmware_list.json' --include '*.hex' --include '*.bin' --include '*.uf2'
|
2024-05-06 09:24:53 +02:00
|
|
|
env:
|
2024-05-07 04:23:56 +02:00
|
|
|
AWS_S3_BUCKET: ${{ vars.CI_QMK_FM_SPACES_BUCKET }}
|
2024-05-06 09:24:53 +02:00
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.CI_QMK_FM_SPACES_KEY }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_QMK_FM_SPACES_SECRET }}
|
2024-05-07 04:23:56 +02:00
|
|
|
AWS_REGION: ${{ vars.CI_QMK_FM_SPACES_REGION }}
|
|
|
|
AWS_S3_ENDPOINT: ${{ vars.CI_QMK_FM_SPACES_ENDPOINT }}
|
2024-07-11 15:43:26 +02:00
|
|
|
SOURCE_DIR: .
|
2024-05-06 09:24:53 +02:00
|
|
|
DEST_DIR: ${{ inputs.branch || github.ref_name }}/latest
|
|
|
|
|
|
|
|
- name: Check if failure marker file exists
|
|
|
|
id: check_failure_marker
|
|
|
|
uses: andstor/file-existence-action@v3
|
|
|
|
with:
|
2024-07-11 15:43:26 +02:00
|
|
|
files: ./.failed
|
2024-05-06 09:24:53 +02:00
|
|
|
|
|
|
|
- name: Fail build if needed
|
2024-05-07 11:02:16 +02:00
|
|
|
if: steps.check_failure_marker.outputs.files_exists == 'true'
|
2024-05-06 09:24:53 +02:00
|
|
|
run: |
|
|
|
|
# Exit with failure if the compilation stage failed
|
|
|
|
exit 1
|