mirror of
https://github.com/nlohmann/json
synced 2024-11-09 22:20:05 +00:00
bbe337c3a3
Co-authored-by: barcode <barcode@example.com>
18 lines
400 B
YAML
18 lines
400 B
YAML
arm_container:
|
|
image: gcc:latest
|
|
|
|
check_task:
|
|
check_script:
|
|
- wget https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2.tar.gz
|
|
- tar xfz cmake-3.20.2.tar.gz
|
|
- cd cmake-3.20.2
|
|
- ./configure
|
|
- make cmake ctest -j4
|
|
- cd ..
|
|
- mkdir build
|
|
- cd build
|
|
- ../cmake-3.20.2/bin/cmake .. -DJSON_FastTests=ON
|
|
- make -j4
|
|
- cd tests
|
|
- ../../cmake-3.20.2/bin/ctest -j4
|