diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d78f2f6..3761a711 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -481,7 +481,7 @@ jobs: if: ${{ job.container }} shell: sh run: | - apk update && apk upgrade && apk add bash cmake file git make parallel tar xz + apk update && apk upgrade && apk add bash cmake curl file git make parallel tar xz mkdir -p ~/.parallel && : > ~/.parallel/$(echo 6305-4721 | tr 0-7 leticlwi) # set PATH like in Ubuntu echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV @@ -505,7 +505,7 @@ jobs: mkdir -p -v ~/.local/bin cd ~/.local/bin ZIG_DIST_NAME=zig-linux-x86_64-${ZIG_DIST_VERSION} - wget -q https://ziglang.org/builds/${ZIG_DIST_NAME}.tar.xz + curl -sS -L -O https://ziglang.org/builds/${ZIG_DIST_NAME}.tar.xz ls -l ${ZIG_DIST_NAME}.tar.xz tar -xoJf ${ZIG_DIST_NAME}.tar.xz rm ${ZIG_DIST_NAME}.tar.xz diff --git a/.github/workflows/github-close-stale-issues.yml b/.github/workflows/github-close-stale-issues.yml index d88dd8a3..1a32d433 100644 --- a/.github/workflows/github-close-stale-issues.yml +++ b/.github/workflows/github-close-stale-issues.yml @@ -12,14 +12,14 @@ # Abandoned Issues and Pull Request". # https://igorwiese.com/images/papers/Paper_BotSE_19.pdf -name: 'GitHub - Close stale issues' +name: GitHub - Close stale issues on: - schedule: [cron: '50 0 * * 1'] # run weekly Monday 00:50 UTC + schedule: [cron: "50 0 * * 1"] # run weekly Monday 00:50 UTC workflow_dispatch: jobs: job-close-stale-issues: if: github.repository_owner == 'upx' && github.repository == 'upx/upx' - name: 'Close stale issues' + name: Close stale issues runs-on: ubuntu-latest permissions: issues: write diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b27613f..ab78e054 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -272,7 +272,7 @@ if(Threads_FOUND) endif() if(NOT result) # failed; under MinGW be sure to use the posix-threads and NOT the win32-threads version - #message(STATUS "Threads FAILED: ${output}") # debug output from try_compile + #message(STATUS "Threads FAILED ${f}: ${output}") # debug output from try_compile set(Threads_FOUND OFF) break() endif()