Skip to content

Commit 1428c23

Browse files
committed
Update SFML version used in CI scripts
1 parent c5cfb7f commit 1428c23

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ concurrency:
77
cancel-in-progress: true
88

99
env:
10-
SFML_VERSION: 3.0.0
10+
SFML_VERSION: 3.0.1
1111

1212
defaults:
1313
run:

.github/workflows/release.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ concurrency:
1313
group: release-${{github.ref}}
1414
cancel-in-progress: true
1515

16+
env:
17+
SFML_VERSION: 3.0.1
18+
1619
jobs:
1720
windows-x86:
1821
name: Windows x86
@@ -24,14 +27,14 @@ jobs:
2427
uses: actions/cache@v4
2528
with:
2629
path: ${{ github.workspace }}/mingw32
27-
key: 14.2.0posix-19.1.1-12.0.0-ucrt-r2-x86
30+
key: 15.1.0posix-13.0.0-ucrt-r2-x86
2831

2932
- name: Install MinGW x86
3033
if: steps.mingw-x86-cache.outputs.cache-hit != 'true'
3134
uses: bwoodsend/setup-winlibs-action@v1
3235
id: winlibs-32
3336
with:
34-
tag: 14.2.0posix-19.1.1-12.0.0-ucrt-r2
37+
tag: 15.1.0posix-13.0.0-ucrt-r2
3538
with_clang: false
3639
architecture: 32
3740
destination: ${{ github.workspace }}
@@ -41,7 +44,7 @@ jobs:
4144
uses: actions/checkout@v4
4245
with:
4346
repository: SFML/SFML
44-
ref: 3.0.0
47+
ref: ${{ env.SFML_VERSION }}
4548
path: SFML
4649

4750
- name: Checkout CSFML
@@ -111,14 +114,14 @@ jobs:
111114
uses: actions/cache@v4
112115
with:
113116
path: ${{ github.workspace }}/mingw64
114-
key: 14.2.0posix-19.1.1-12.0.0-ucrt-r2-x64
117+
key: 15.1.0posix-13.0.0-ucrt-r2-x64
115118

116119
- name: Install MinGW x64
117120
if: steps.mingw-x64-cache.outputs.cache-hit != 'true'
118121
uses: bwoodsend/setup-winlibs-action@v1
119122
id: winlibs-64
120123
with:
121-
tag: 14.2.0posix-19.1.1-12.0.0-ucrt-r2
124+
tag: 15.1.0posix-13.0.0-ucrt-r2
122125
with_clang: false
123126
architecture: 64
124127
destination: ${{ github.workspace }}
@@ -128,7 +131,7 @@ jobs:
128131
uses: actions/checkout@v4
129132
with:
130133
repository: SFML/SFML
131-
ref: 3.0.0
134+
ref: ${{ env.SFML_VERSION }}
132135
path: SFML
133136

134137
- name: Checkout CSFML
@@ -197,7 +200,7 @@ jobs:
197200
uses: actions/checkout@v4
198201
with:
199202
repository: SFML/SFML
200-
ref: 3.0.0
203+
ref: ${{ env.SFML_VERSION }}
201204
path: SFML
202205

203206
- name: Checkout CSFML
@@ -260,7 +263,7 @@ jobs:
260263
uses: actions/checkout@v4
261264
with:
262265
repository: SFML/SFML
263-
ref: 3.0.0
266+
ref: ${{ env.SFML_VERSION }}
264267
path: SFML
265268

266269
- name: Checkout CSFML

tools/nuget/build.linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ echo "Please note that all SFML dependencies must be installed and available to
4242

4343
RID="$1"
4444

45-
SFMLBranch="3.0.0" # The branch or tag of the SFML repository to be cloned
45+
SFMLBranch="3.0.1" # The branch or tag of the SFML repository to be cloned
4646
CSFMLDir="$(realpath ../../)" # The directory of the source code of CSFML
4747

4848
OutDir="./CSFML/runtimes/$RID/native" # The base directory of all CSFML modules, used to copy the final libraries

tools/nuget/build.macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ echo "Please note that all SFML dependencies must be installed and available to
4646

4747
RID="$1"
4848

49-
SFMLBranch="3.0.0" # The branch or tag of the SFML repository to be cloned
49+
SFMLBranch="3.0.1" # The branch or tag of the SFML repository to be cloned
5050
CSFMLDir="$(grealpath "$(git rev-parse --show-toplevel)")" # The directory of the source code of CSFML
5151

5252
OutDir="./CSFML/runtimes/$RID/native" # The base directory of all CSFML modules, used to copy the final libraries

tools/nuget/build.win.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Write-Output "Building $RID"
3535
Write-Output "Using $Generator as the cmake generator"
3636
Write-Output "Using architecture $Architecture"
3737

38-
$SFMLBranch = "3.0.0" # The branch or tag of the SFML repository to be cloned
38+
$SFMLBranch = "3.0.1" # The branch or tag of the SFML repository to be cloned
3939
$CSFMLDir = (Get-Item (git rev-parse --show-toplevel)).FullName # The directory of the source code of CSFML
4040

4141
$OutDir = "./CSFML/runtimes/$RID/native" # The directory of all CSFML modules, used to copy the final dlls

0 commit comments

Comments
 (0)