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 388549a commit b5b5234Copy full SHA for b5b5234
.github/workflows/cmake.yml
@@ -143,6 +143,8 @@ jobs:
143
steps:
144
- name: Checkout
145
uses: actions/checkout@v4
146
+ - name: Downgrade CMake # force downgrade CMake as later versions try to use the C++ standard flag to compile C programs, which cause an error.
147
+ run: choco install cmake --version 3.30.6 --allow-downgrade
148
- name: Configure
149
run: mkdir build && mkdir install && cd build && cmake -DCMAKE_INSTALL_PREFIX="../install" -T ClangCL -DNFD_BUILD_TESTS=ON ..
150
- name: Build
0 commit comments