summaryrefslogtreecommitdiff
path: root/.github/workflows/ci_build_major_branch.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci_build_major_branch.yml')
-rw-r--r--.github/workflows/ci_build_major_branch.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/ci_build_major_branch.yml b/.github/workflows/ci_build_major_branch.yml
index 2ea8310cb4..e857f5f6c4 100644
--- a/.github/workflows/ci_build_major_branch.yml
+++ b/.github/workflows/ci_build_major_branch.yml
@@ -35,11 +35,6 @@ jobs:
35 slice_length: ${{ steps.generate_slice_length.outputs.slice_length }} 35 slice_length: ${{ steps.generate_slice_length.outputs.slice_length }}
36 36
37 steps: 37 steps:
38 - name: Install prerequisites
39 run: |
40 apt-get update
41 apt-get install -y jq
42
43 - name: Disable safe.directory check 38 - name: Disable safe.directory check
44 run: | 39 run: |
45 git config --global --add safe.directory '*' 40 git config --global --add safe.directory '*'
@@ -47,6 +42,9 @@ jobs:
47 - name: Checkout QMK Firmware 42 - name: Checkout QMK Firmware
48 uses: actions/checkout@v6 43 uses: actions/checkout@v6
49 44
45 - name: Install dependencies
46 run: pip3 install -r requirements-dev.txt
47
50 - name: Determine concurrency 48 - name: Determine concurrency
51 id: generate_slice_length 49 id: generate_slice_length
52 run: | 50 run: |