From a47dcad1eabfda1bd6593d584ddf2bd160221f68 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Wed, 11 Jun 2025 12:36:27 +0200 Subject: [PATCH] Clean up staticbuild CI action - This action does not use CMake or CTest, so remove associated environment variables. - Remove a seemingly unnecessary check Tested with "gh --repo krobelus/fish-shell workflow run staticbuild.yml --ref=tmp", see https://github.com/krobelus/fish-shell/actions/runs/15583255106/job/43883294589 --- .github/workflows/staticbuild.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/staticbuild.yml b/.github/workflows/staticbuild.yml index 3a80f0b0e..41aa95264 100644 --- a/.github/workflows/staticbuild.yml +++ b/.github/workflows/staticbuild.yml @@ -7,10 +7,6 @@ on: # - cron: "14 13 * * *" workflow_dispatch: -env: - CTEST_PARALLEL_LEVEL: "1" - CMAKE_BUILD_PARALLEL_LEVEL: "4" - jobs: staticbuilds-linux: @@ -36,7 +32,7 @@ jobs: cargo build --release --target x86_64-unknown-linux-musl - name: Test run: | - test -e tests/test_driver.py && tests/test_driver.py -f /tmp target/x86_64-unknown-linux-musl/release/ + tests/test_driver.py target/x86_64-unknown-linux-musl/release/ - name: Compress run: | tar -cazf fish-static-x86_64-$(git describe).tar.xz -C target/x86_64-unknown-linux-musl/release/ fish