Skip to content

Commit 403a0ce

Browse files
committed
Let CI download SFML binaries from github instead of directly from the SFML website
1 parent fcbfe2c commit 403a0ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ jobs:
648648
windows-oldest: # Setup technically not allowed, backends have conflicting FreeType dependencies (linking statically won't even work)
649649
runs-on: windows-2022
650650
env:
651-
SFML_VERSION: 2.5.0
651+
SFML_VERSION: 2.5.1
652652
SDL_VERSION: 2.0.6
653653
SDL_TTF_VERSION: 2.0.14
654654
FREETYPE_VERSION: 2.6.5
@@ -662,7 +662,7 @@ jobs:
662662
- name: Install dependencies
663663
run: |
664664
C:\msys64\usr\bin\wget.exe -nv https://cmake.org/files/v${env:CMAKE_VERSION}/cmake-${env:CMAKE_VERSION}.${env:CMAKE_VERSION_PATCH}-windows-i386.zip
665-
C:\msys64\usr\bin\wget.exe -nv https://www.sfml-dev.org/files/SFML-${env:SFML_VERSION}-windows-vc15-32-bit.zip
665+
C:\msys64\usr\bin\wget.exe -nv https://github.com/SFML/SFML/releases/download/${env:SFML_VERSION}/SFML-${env:SFML_VERSION}-windows-vc15-32-bit.zip
666666
C:\msys64\usr\bin\wget.exe -nv https://libsdl.org/release/SDL2-devel-${env:SDL_VERSION}-VC.zip
667667
C:\msys64\usr\bin\wget.exe -nv https://libsdl.org/projects/SDL_ttf/release/SDL2_ttf-devel-${env:SDL_TTF_VERSION}-VC.zip
668668
C:\msys64\usr\bin\wget.exe -nv https://github.com/ubawurinna/freetype-windows-binaries/archive/refs/tags/v${env:FREETYPE_VERSION}.zip
@@ -1191,10 +1191,10 @@ jobs:
11911191
run: |
11921192
Install-ChocoPackage doxygen.install
11931193
mkdir x86
1194-
C:\msys64\usr\bin\wget.exe -nv https://www.sfml-dev.org/files/SFML-${env:SFML_VERSION}-windows-vc16-32-bit.zip
1194+
C:\msys64\usr\bin\wget.exe -nv https://github.com/SFML/SFML/releases/download/${env:SFML_VERSION}/SFML-${env:SFML_VERSION}-windows-vc16-32-bit.zip
11951195
7z x SFML-${env:SFML_VERSION}-windows-vc16-32-bit.zip -o"x86"
11961196
mkdir x64
1197-
C:\msys64\usr\bin\wget.exe -nv https://www.sfml-dev.org/files/SFML-${env:SFML_VERSION}-windows-vc16-64-bit.zip
1197+
C:\msys64\usr\bin\wget.exe -nv https://github.com/SFML/SFML/releases/download/${env:SFML_VERSION}/SFML-${env:SFML_VERSION}-windows-vc16-64-bit.zip
11981198
7z x SFML-${env:SFML_VERSION}-windows-vc16-64-bit.zip -o"x64"
11991199
12001200
- name: Remove .git folder

0 commit comments

Comments
 (0)