Files
game-and-watch-retro-go/scripts/.ci_build_macos.sh
Konrad Beckmann 1215d0e3fd Revert "ci: Remove --http1.1 flag"
Seems this might still be needed after all

This reverts commit 2a9bf6d719.
2021-11-11 20:44:46 +01:00

19 lines
541 B
Bash
Executable File

#!/bin/bash
set -xe
./scripts/.ci_prepare_roms.sh
# Install toolchain
# curl -L -o toolchain.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-mac.tar.bz2?revision=48a4e09a-eb5a-4eb8-8b11-d65d7e6370ff&la=en&hash=8AACA5F787C5360D2C3C50647C52D44BCDA1F73F
# Faster mirror:
curl -L --http1.1 -o toolchain.tar.bz2 https://allg.one/7vMO
tar xf toolchain.tar.bz2
export GCC_PATH=$(pwd)/gcc-arm-none-eabi-10-2020-q4-major/bin
make -j8 download_sdk
make -j$(sysctl -n hw.logicalcpu)