Skip to content

Commit 936c75c

Browse files
committed
Add CI build for "import std" on MSVC
1 parent 6f43b6b commit 936c75c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,11 @@ jobs:
147147
- { std: 14 }
148148
- { std: 17 }
149149
- { std: 20 }
150-
name: "Windows C++${{matrix.config.std}}"
150+
- { std: 20, import_std: "import std" }
151+
- { std: 23 }
152+
- { std: 23, import_std: "import std" }
153+
154+
name: "Windows C++${{matrix.config.std}} ${{matrix.config.import_std}}"
151155
steps:
152156
- uses: actions/checkout@v4
153157

@@ -167,6 +171,7 @@ jobs:
167171
-DCMAKE_BUILD_TYPE=Debug \
168172
-DCMAKE_VERBOSE_MAKEFILE=yes \
169173
-DSTRONG_TYPE_UNIT_TEST=yes \
174+
${"${{matrix.config.import_std}}":+"-DSTRONG_TYPE_IMPORT_STD_LIBRARY"} \
170175
-G Ninja
171176
172177
- name: "build"

0 commit comments

Comments
 (0)