From 83f929911ed67d367d150f4f49651321d32bd749 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 9 Jun 2025 18:03:23 +0200 Subject: [PATCH] reorder arguments in CI workflow it's more logical to have the DEBUG arument at the end, to be on-par with `compile` job --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 48c26ae..880180a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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