Skip to content

Commit

Permalink
More CI fixups
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Dec 5, 2023
1 parent b7f9993 commit 965b1dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/bootstrap-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ function get_linux_deb_arch() {
"linux-i686") echo "i386" ;;
"linux-riscv64") echo "riscv64" ;;
"linux-x86_64") echo "amd64" ;;
"win32"|"win64") echo "i386" ;;
esac
}

Expand All @@ -43,9 +42,13 @@ function install_compiler() {
cd ~/PawPawBuilds/emsdk && ./emsdk install ${EMSCRIPTEN_VERSION} && ./emsdk activate ${EMSCRIPTEN_VERSION}
;;
"win32")
dpkg --add-architecture i386
apt-get update -qq
apt-get install -yqq binutils-mingw-w64-i686 g++-mingw-w64-i686 mingw-w64 wine-stable
;;
"win64")
dpkg --add-architecture i386
apt-get update -qq
apt-get install -yqq binutils-mingw-w64-x86-64 g++-mingw-w64-x86-64 mingw-w64 wine-stable
;;
esac
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- target: linux-armhf
os: ubuntu-latest
container: ubuntu:22.04
- target: linux-i686
os: ubuntu-latest
container: ubuntu:22.04
#- target: linux-i686
#os: ubuntu-latest
#container: ubuntu:22.04
- target: linux-riscv64
os: ubuntu-latest
container: ubuntu:22.04
Expand Down

0 comments on commit 965b1dc

Please sign in to comment.