Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Dec 30, 2023
1 parent ba8f1a5 commit 55536d6
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -529,17 +529,19 @@ jobs:
os: macos-11
- target: macos-universal
os: macos-11
- target: macos-universal-10.15
os: macos-11
# FIXME broken build
#- target: macos-universal-10.15
#os: macos-11
# macos 12
- target: macos
os: macos-12
- target: macos-10.15
os: macos-12
- target: macos-universal
os: macos-12
- target: macos-universal-10.15
os: macos-12
# FIXME broken build
#- target: macos-universal-10.15
#os: macos-12
# debian:11
- target: linux-aarch64
container: debian:11
Expand Down Expand Up @@ -799,19 +801,23 @@ jobs:
./bootstrap-carla.sh ${{ matrix.target }} && ./.cleanup.sh ${{ matrix.target }}
modaudio:
env:
PAWPAW_SKIP_LTO: 1
strategy:
matrix:
include:
# macos 11
- target: macos-10.15
os: macos-11
- target: macos-universal-10.15
os: macos-11
# FIXME broken build
#- target: macos-universal-10.15
#os: macos-11
# macos 12
- target: macos-10.15
os: macos-12
- target: macos-universal-10.15
os: macos-12
# FIXME broken build
#- target: macos-universal-10.15
#os: macos-12
# debian 11
- target: linux-x86_64
container: debian:11
Expand Down
2 changes: 2 additions & 0 deletions bootstrap-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ function build_conf_openssl() {
fi
export RELEASE="whatever"
export BUILD="unknown"
elif [ "${MACOS_UNIVERSAL}" -eq 0 ] && [ "$(uname -m)" != "x86_64" ]; then
export MACHINE="x86_64"
fi

_prebuild "${name}" "${pkgdir}"
Expand Down
18 changes: 13 additions & 5 deletions setup/check_target.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ function check_target() {
CLANG=1
MACOS=1
;;
"macos-universal")
"macos-10.15")
CLANG=1
MACOS=1
MACOS_UNIVERSAL=1
MACOS_10_15=1
;;
"macos-10.15")
"macos-universal")
CLANG=1
MACOS=1
MACOS_10_15=1
MACOS_UNIVERSAL=1
;;
"macos-universal-10.15")
CLANG=1
Expand Down Expand Up @@ -167,8 +167,16 @@ function check_target() {
;;
default|*)
echo "Invalid target '${target}', possible values are:"
echo "\tmacos"
echo "\tlinux"
echo "\tlinux-aarch64|linux-arm64"
echo "\tlinux-armhf"
echo "\tlinux-i686|linux-i386"
echo "\tlinux-riscv64"
echo "\tlinux-x86_64"
echo "\tmacos|macos-intel"
echo "\tmacos-10.15"
echo "\tmacos-universal"
echo "\tmacos-universal-10.15"
echo "\twasm"
echo "\twin32"
echo "\twin64"
Expand Down

0 comments on commit 55536d6

Please sign in to comment.