We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc1e51d commit 0712035Copy full SHA for 0712035
.github/workflows/build.yml
@@ -80,6 +80,27 @@ jobs:
80
CTEST_OUTPUT_ON_FAILURE: 1
81
run: ctest -C Debug -j4
82
83
+ stl:
84
+ strategy:
85
+ matrix:
86
+ os: [windows-latest, macOS-latest, ubuntu-latest]
87
+
88
+ timeout-minutes: 15
89
+ runs-on: ${{ matrix.os }}
90
91
+ steps:
92
+ - uses: actions/checkout@v4
93
+ - name: Compile tests
94
+ working-directory: build
95
+ run: |
96
+ cmake -DENTT_BUILD_TESTING=ON -DENTT_USE_STL=ON ..
97
+ cmake --build . -j 4
98
+ - name: Run tests
99
100
+ env:
101
+ CTEST_OUTPUT_ON_FAILURE: 1
102
+ run: ctest -C Debug -j4
103
104
extra:
105
strategy:
106
matrix:
0 commit comments