Skip to content

Commit 5d0ed88

Browse files
github: follow-up to 91cafbd: fix paths
1 parent 91cafbd commit 5d0ed88

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/windows.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
id: cache-externals
2020
uses: actions/cache@v3
2121
with:
22-
path: ${{runner.temp}}\boost_1_83_0
22+
path: ${{runner.temp}}\boost_1_88_0
2323
key: cache-externals
2424

2525
- name: Get externals
@@ -34,7 +34,7 @@ jobs:
3434
# Extract.
3535
7z x boost.7z
3636
# Build.
37-
cd boost_1_83_0
37+
cd boost_1_88_0
3838
.\bootstrap
3939
.\b2 link=static
4040
@@ -45,12 +45,12 @@ jobs:
4545

4646
- name: Build
4747
env:
48-
BOOST_ROOT: ${{runner.temp}}\boost_1_83_0
49-
Boost_INCLUDE_DIR: ${{runner.temp}}\boost_1_83_0\libs\headers
48+
BOOST_ROOT: ${{runner.temp}}\boost_1_88_0
49+
Boost_INCLUDE_DIR: ${{runner.temp}}\boost_1_88_0\libs\headers
5050
shell: powershell
5151
run: |
5252
mkdir -p build
53-
cmake -S . -B build -DBoost_USE_STATIC_LIBS=ON -DBoost_DIR="$env:BOOST_ROOT\stage\lib\cmake\Boost-1.83.0"
53+
cmake -S . -B build -DBoost_USE_STATIC_LIBS=ON -DBoost_DIR="$env:BOOST_ROOT\stage\lib\cmake\Boost-1.88.0"
5454
cmake --build build --config Release
5555
5656
- name: Test libftp
@@ -62,3 +62,4 @@ jobs:
6262
- name: Test cmdline
6363
working-directory: ${{github.workspace}}\build\app\cmdline\test\Release
6464
run: .\cmdline_tests.exe
65+

0 commit comments

Comments
 (0)