Skip to content

Commit 196364e

Browse files
committed
Update SFML version used in CI scripts
1 parent 0c8b70f commit 196364e

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
@@ -14,6 +14,9 @@ concurrency:
1414
group: release-${{github.ref}}
1515
cancel-in-progress: true
1616

17+
env:
18+
SFML_VERSION: 3.0.1
19+
1720
jobs:
1821
windows-x86:
1922
name: Windows x86
@@ -25,14 +28,14 @@ jobs:
2528
uses: actions/cache@v4
2629
with:
2730
path: ${{ github.workspace }}/mingw32
28-
key: 14.2.0posix-19.1.1-12.0.0-ucrt-r2-x86
31+
key: 15.1.0posix-13.0.0-ucrt-r2-x86
2932

3033
- name: Install MinGW x86
3134
if: steps.mingw-x86-cache.outputs.cache-hit != 'true'
3235
uses: bwoodsend/setup-winlibs-action@v1
3336
id: winlibs-32
3437
with:
35-
tag: 14.2.0posix-19.1.1-12.0.0-ucrt-r2
38+
tag: 15.1.0posix-13.0.0-ucrt-r2
3639
with_clang: false
3740
architecture: 32
3841
destination: ${{ github.workspace }}
@@ -42,7 +45,7 @@ jobs:
4245
uses: actions/checkout@v4
4346
with:
4447
repository: SFML/SFML
45-
ref: 3.0.0
48+
ref: ${{ env.SFML_VERSION }}
4649
path: SFML
4750

4851
- name: Checkout CSFML
@@ -112,14 +115,14 @@ jobs:
112115
uses: actions/cache@v4
113116
with:
114117
path: ${{ github.workspace }}/mingw64
115-
key: 14.2.0posix-19.1.1-12.0.0-ucrt-r2-x64
118+
key: 15.1.0posix-13.0.0-ucrt-r2-x64
116119

117120
- name: Install MinGW x64
118121
if: steps.mingw-x64-cache.outputs.cache-hit != 'true'
119122
uses: bwoodsend/setup-winlibs-action@v1
120123
id: winlibs-64
121124
with:
122-
tag: 14.2.0posix-19.1.1-12.0.0-ucrt-r2
125+
tag: 15.1.0posix-13.0.0-ucrt-r2
123126
with_clang: false
124127
architecture: 64
125128
destination: ${{ github.workspace }}
@@ -129,7 +132,7 @@ jobs:
129132
uses: actions/checkout@v4
130133
with:
131134
repository: SFML/SFML
132-
ref: 3.0.0
135+
ref: ${{ env.SFML_VERSION }}
133136
path: SFML
134137

135138
- name: Checkout CSFML
@@ -198,7 +201,7 @@ jobs:
198201
uses: actions/checkout@v4
199202
with:
200203
repository: SFML/SFML
201-
ref: 3.0.0
204+
ref: ${{ env.SFML_VERSION }}
202205
path: SFML
203206

204207
- name: Checkout CSFML
@@ -261,7 +264,7 @@ jobs:
261264
uses: actions/checkout@v4
262265
with:
263266
repository: SFML/SFML
264-
ref: 3.0.0
267+
ref: ${{ env.SFML_VERSION }}
265268
path: SFML
266269

267270
- 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)