Skip to content

Commit 39f8f90

Browse files
committed
install fast_float
1 parent baca5f7 commit 39f8f90

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,20 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818

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+
1928
- name: Configure CMake
2029
run: |
2130
mkdir build
2231
cd build
23-
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ..
32+
cmake -DFastFloat_DIR="${{github.workspace}}/installation/share/cmake/FastFloat" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ..
2433
2534
- name: Build
2635
run: |

0 commit comments

Comments
 (0)