forked from mirrors/principia
Switch to CLANG64 on Windows
This commit is contained in:
parent
8341ffd839
commit
41e7fca1ef
2 changed files with 12 additions and 4 deletions
6
.github/workflows/windows.yml
vendored
6
.github/workflows/windows.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
with:
|
||||
update: true
|
||||
release: false
|
||||
msystem: UCRT64
|
||||
msystem: CLANG64
|
||||
pacboy: >-
|
||||
git:
|
||||
gcc:p
|
||||
|
|
@ -46,11 +46,9 @@ jobs:
|
|||
nsis:p
|
||||
7zip:p
|
||||
|
||||
# custom built packages with less dependencies than MSYS' counterparts
|
||||
- name: Install external packages
|
||||
run: |
|
||||
wget https://grejer.voxelmanip.se/msys-pkgs/mingw-w64-ucrt-x86_64-{curl-winssl-8.9.1-2,freetype-2.13.2-1}-any.pkg.tar.zst
|
||||
pacman -U --noconfirm *.pkg.tar.zst
|
||||
./packaging/windows-install-pkgs.sh
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
|
|
|
|||
10
packaging/windows-install-pkgs.sh
Normal file
10
packaging/windows-install-pkgs.sh
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Download and install custom built packages with less dependencies than MSYS2 counterparts
|
||||
|
||||
REPO=https://github.com/principia-game/windows-deps
|
||||
|
||||
wget ${REPO}/releases/download/latest/mingw-w64-clang-x86_64-curl-winssl-8.12.1-1-any.pkg.tar.zst
|
||||
wget ${REPO}/releases/download/latest/mingw-w64-clang-x86_64-freetype-2.13.2-1-any.pkg.tar.zst
|
||||
|
||||
pacman -U --noconfirm *.pkg.tar.zst
|
||||
Loading…
Add table
Add a link
Reference in a new issue