✅ Pre-fetch configs for CI tests
This commit is contained in:
parent
8643fa0afb
commit
bd4900d6cd
2 changed files with 64 additions and 11 deletions
10
.github/workflows/ci-build-tests.yml
vendored
10
.github/workflows/ci-build-tests.yml
vendored
|
|
@ -36,6 +36,9 @@ jobs:
|
|||
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
env:
|
||||
CONFIG_BRANCH: ${{ github.base_ref || github.ref_name }}
|
||||
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
|
|
@ -205,6 +208,13 @@ jobs:
|
|||
sudo apt-get install libsdl2-net-dev
|
||||
sudo apt-get install libglm-dev
|
||||
|
||||
- name: Checkout Configurations
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: MarlinFirmware/Configurations
|
||||
ref: ${{ env.CONFIG_BRANCH }}
|
||||
path: ConfigurationsRepo
|
||||
|
||||
- name: Run ${{ matrix.test-platform }} Tests
|
||||
run: |
|
||||
make tests-single-ci TEST_TARGET=${{ matrix.test-platform }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue