From 0c62748b75a9750f7ce0c39e052782d9c41981a7 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 9 May 2021 13:46:48 +0200 Subject: [PATCH] :wrench: change repository --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index ebb8615c8..c2f32dd32 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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