diff options
| author | Joel Challis | 2025-12-15 01:21:06 +0100 |
|---|---|---|
| committer | GitHub | 2025-12-15 01:21:06 +0100 |
| commit | 2c847b0350cfef92f347f27a0ebe9f0187e95b5e (patch) | |
| tree | 8f3b929a632142a5897f838595b1fa3b3007ebc4 /.github/workflows/ci_build_major_branch.yml | |
| parent | e1c869b8dafd9078f71a1a31f5d63c77196142c1 (diff) | |
Consistently install branch specific dependencies in CI (#25874)
Diffstat (limited to '.github/workflows/ci_build_major_branch.yml')
| -rw-r--r-- | .github/workflows/ci_build_major_branch.yml | 8 |
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: 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 '*' @@ -47,6 +42,9 @@ jobs: - name: Checkout QMK Firmware uses: actions/checkout@v6 + - name: Install dependencies + run: pip3 install -r requirements-dev.txt + - name: Determine concurrency id: generate_slice_length run: | |