Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
run: |
cd build
ctest --extra-verbose --no-tests=error
windows-2022:
windows-2025:
strategy:
matrix:
shared: [
Expand All @@ -103,7 +103,7 @@ jobs:
"boost",
"stdfs"
]
runs-on: windows-2022
runs-on: windows-2025
steps:
- uses: actions/checkout@v4
- name: Add MSVC to PATH
Expand All @@ -117,7 +117,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install --upgrade conan
CONAN_ARGS="--profile .github/workflows/conan/profiles/vs2022 \
CONAN_ARGS="--profile .github/workflows/conan/profiles/vs2025 \
-o with_boost=${H5CPP_WITH_BOOST} \
-o shared=${H5CPP_SHARED} \
-o *:shared=${H5CPP_SHARED}"
Expand All @@ -129,13 +129,13 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.conan/data
key: conan-vs2022-${{ hashfiles('base.lock') }}-${{ hashFiles('conan.lock') }}
key: conan-vs2025-${{ hashfiles('base.lock') }}-${{ hashFiles('conan.lock') }}
restore-keys: |
conan-vs-2022-${{ hashfiles('base.lock') }}
conan-vs-2022
conan-vs-2025-${{ hashfiles('base.lock') }}
conan-vs-2025
- name: Install conan dependencies
run: |
CONAN_ARGS="--profile .github/workflows/conan/profiles/vs2022 \
CONAN_ARGS="--profile .github/workflows/conan/profiles/vs2025 \
-o with_boost=${H5CPP_WITH_BOOST} \
-o shared=${H5CPP_SHARED} \
-o *:shared=${H5CPP_SHARED}"
Expand All @@ -148,7 +148,7 @@ jobs:
--generator VirtualRunEnv
- name: Build with cmake
run: |
CONAN_ARGS="--profile .github/workflows/conan/profiles/vs2022 \
CONAN_ARGS="--profile .github/workflows/conan/profiles/vs2025 \
-o with_boost=${H5CPP_WITH_BOOST} \
-o shared=${H5CPP_SHARED} \
-o *:shared=${H5CPP_SHARED}"
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/conan/profiles/vs2019

This file was deleted.

2 changes: 1 addition & 1 deletion test/core/fixed_length_string_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,4 @@ SCENARIO("testing reading of fixed-size string attributes")
}
}
}
}
}
Loading