From 86f835ac27dec2fde478c3f33022297ae80278cf Mon Sep 17 00:00:00 2001 From: Holger Obermaier <40787752+ho-ob@users.noreply.github.com> Date: Fri, 23 Jan 2026 10:55:47 +0100 Subject: [PATCH] Change step order to assure likwid.h is available --- .github/workflows/runonce.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/runonce.yml b/.github/workflows/runonce.yml index ad3b717..c978578 100644 --- a/.github/workflows/runonce.yml +++ b/.github/workflows/runonce.yml @@ -31,22 +31,24 @@ jobs: go-version: 1.24 check-latest: true + - name: Build MetricCollector + run: make + + - name: Run MetricCollector once + run: ./cc-metric-collector --once --config .github/ci-config.json + # See: https://github.com/golangci/golangci-lint-action + # Running the linter requires likwid.h, which gets downloaded in the build step - name: Static Analysis with GolangCI-Lint uses: golangci/golangci-lint-action@v4 with: version: latest args: --verbose + # Running the linter requires likwid.h, which gets downloaded in the build step - name: Run static analysis with go vet run: go vet ./... - - name: Build MetricCollector - run: make - - - name: Run MetricCollector once - run: ./cc-metric-collector --once --config .github/ci-config.json - # # Build on AlmaLinux 8 using go-toolset #