🔧 change repository

This commit is contained in:
Niels Lohmann 2021-05-09 13:46:48 +02:00
parent c73bd8b251
commit 0c62748b75
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -8,17 +8,17 @@ steps:
- name: build
image: gcc
commands:
- git -c http.sslVerify=false clone https://github.com/Kitware/CMake.git
- cd CMake
- git -c http.sslVerify=false clone https://gitlab.kitware.com/cmake/cmake.git
- cd cmake
- ./configure
- make cmake ctest -j10
- cd ..
- mkdir build
- cd build
- ../CMake/bin/cmake .. -DJSON_FastTests=ON
- ../cmake/bin/cmake .. -DJSON_FastTests=ON
- make -j10
- cd test
- ../../CMake/bin/ctest -j10
- ../../cmake/bin/ctest -j10
---
kind: pipeline