We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baca5f7 commit 39f8f90Copy full SHA for 39f8f90
.github/workflows/tests.yml
@@ -16,11 +16,20 @@ jobs:
16
steps:
17
- uses: actions/checkout@v3
18
19
+ - name: install fast_float dependency
20
+ run: |
21
+ cd ${{github.workspace}}
22
+ git clone https://github.com/fastfloat/fast_float.git
23
+ mkdir fast_float/build
24
+ cd fast_float/build
25
+ cmake -DCMAKE_INSTALL_PREFIX="${{github.workspace}}/installation" ..
26
+ make install
27
+
28
- name: Configure CMake
29
run: |
30
mkdir build
31
cd build
- cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ..
32
+ cmake -DFastFloat_DIR="${{github.workspace}}/installation/share/cmake/FastFloat" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ..
33
34
- name: Build
35
0 commit comments