mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-02-07 10:19:52 +08:00
Trying another script.
This commit is contained in:
parent
61f09fb0be
commit
cf344a4c28
25
.github/workflows/vs16-ci.yml
vendored
25
.github/workflows/vs16-ci.yml
vendored
@ -15,20 +15,13 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Configure
|
- name: Use cmake
|
||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build &&
|
||||||
cd build && cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -DFASTFLOAT_TEST=ON ..
|
cd build &&
|
||||||
- name: Build
|
cmake ${{matrix.cxx}} ${{matrix.arch}} -DFASTFLOAT_TEST=ON -DCMAKE_INSTALL_PREFIX:PATH=destination .. &&
|
||||||
run: cmake --build build --config Release --parallel
|
cmake --build . &&
|
||||||
- name: Run tests
|
ctest --output-on-failure &&
|
||||||
run: |
|
cmake --install . &&
|
||||||
cd build
|
cd ../tests/installation_tests/find &&
|
||||||
ctest -C Release --output-on-failure
|
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build .
|
||||||
- name: Install
|
|
||||||
run: |
|
|
||||||
cmake --install build --config Release
|
|
||||||
- name: Test Installation
|
|
||||||
run: |
|
|
||||||
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -B build_install_test tests/installation_tests/find
|
|
||||||
cmake --build build_install_test --config Release
|
|
||||||
Loading…
x
Reference in New Issue
Block a user