CI updates
This commit is contained in:
parent
c04c685469
commit
2962dc351b
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -481,7 +481,7 @@ jobs:
|
|||||||
if: ${{ job.container }}
|
if: ${{ job.container }}
|
||||||
shell: sh
|
shell: sh
|
||||||
run: |
|
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)
|
mkdir -p ~/.parallel && : > ~/.parallel/$(echo 6305-4721 | tr 0-7 leticlwi)
|
||||||
# set PATH like in Ubuntu
|
# set PATH like in Ubuntu
|
||||||
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
|
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
|
||||||
@ -505,7 +505,7 @@ jobs:
|
|||||||
mkdir -p -v ~/.local/bin
|
mkdir -p -v ~/.local/bin
|
||||||
cd ~/.local/bin
|
cd ~/.local/bin
|
||||||
ZIG_DIST_NAME=zig-linux-x86_64-${ZIG_DIST_VERSION}
|
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
|
ls -l ${ZIG_DIST_NAME}.tar.xz
|
||||||
tar -xoJf ${ZIG_DIST_NAME}.tar.xz
|
tar -xoJf ${ZIG_DIST_NAME}.tar.xz
|
||||||
rm ${ZIG_DIST_NAME}.tar.xz
|
rm ${ZIG_DIST_NAME}.tar.xz
|
||||||
|
|||||||
@ -12,14 +12,14 @@
|
|||||||
# Abandoned Issues and Pull Request".
|
# Abandoned Issues and Pull Request".
|
||||||
# https://igorwiese.com/images/papers/Paper_BotSE_19.pdf
|
# https://igorwiese.com/images/papers/Paper_BotSE_19.pdf
|
||||||
|
|
||||||
name: 'GitHub - Close stale issues'
|
name: GitHub - Close stale issues
|
||||||
on:
|
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:
|
workflow_dispatch:
|
||||||
jobs:
|
jobs:
|
||||||
job-close-stale-issues:
|
job-close-stale-issues:
|
||||||
if: github.repository_owner == 'upx' && github.repository == 'upx/upx'
|
if: github.repository_owner == 'upx' && github.repository == 'upx/upx'
|
||||||
name: 'Close stale issues'
|
name: Close stale issues
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
issues: write
|
issues: write
|
||||||
|
|||||||
@ -272,7 +272,7 @@ if(Threads_FOUND)
|
|||||||
endif()
|
endif()
|
||||||
if(NOT result)
|
if(NOT result)
|
||||||
# failed; under MinGW be sure to use the posix-threads and NOT the win32-threads version
|
# 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)
|
set(Threads_FOUND OFF)
|
||||||
break()
|
break()
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user