reorder arguments in CI workflow

it's more logical to have the DEBUG arument at the end, to be on-par
with `compile` job
This commit is contained in:
2025-06-09 18:03:23 +02:00
parent a7fb6136ea
commit 83f929911e

View File

@@ -83,4 +83,4 @@ jobs:
# compile and execute tests
- uses: actions/checkout@v4
- name: execute tests for ${{matrix.march}}-${{matrix.kernel}}
run: make DEBUG=test run MARCH=${{matrix.march}} KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} -j
run: make KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} DEBUG=test run MARCH=${{matrix.march}} -j