CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-10-31 10:34:55 +01:00
parent 19c6b969ab
commit b094ad4f2b
10 changed files with 75 additions and 22 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ jobs:
- name: ${{ format('Build clang {0}', matrix.container) }}
run: |
apk update && apk upgrade && apk add clang cmake make
wget https://github.com/upx/upx/releases/download/v4.1.0/upx-4.1.0-src.tar.xz
wget https://github.com/upx/upx/releases/download/v4.2.0/upx-4.2.0-src.tar.xz
tar -xoaf upx-*-src.tar.xz
cd upx-*-src
make build/debug CC="clang -static" CXX="clang++ -static"
@@ -48,7 +48,7 @@ jobs:
- name: ${{ format('Build gcc {0}', matrix.container) }}
run: |
apk update && apk upgrade && apk add cmake g++ make
wget https://github.com/upx/upx/releases/download/v4.1.0/upx-4.1.0-src.tar.xz
wget https://github.com/upx/upx/releases/download/v4.2.0/upx-4.2.0-src.tar.xz
tar -xoaf upx-*-src.tar.xz
cd upx-*-src
make build/debug CC="gcc -static" CXX="g++ -static"