Explorar el Código

fixed reference to gitlab in ci

Crimson-Hawk hace 2 años
padre
commit
e1f809079e
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      .ci/scripts/clang/docker.sh
  2. 1 1
      .ci/scripts/linux/docker.sh
  3. 1 1
      .ci/scripts/windows/docker.sh

+ 1 - 1
.ci/scripts/clang/docker.sh

@@ -7,7 +7,7 @@
 # Exit on error, rather than continuing with the rest of the script.
 set -e
 
-ccache -sv
+ccache -s
 
 mkdir build || true && cd build
 cmake .. \

+ 1 - 1
.ci/scripts/linux/docker.sh

@@ -6,7 +6,7 @@
 # Exit on error, rather than continuing with the rest of the script.
 set -e
 
-ccache -sv
+ccache -s
 
 mkdir build || true && cd build
 cmake .. \

+ 1 - 1
.ci/scripts/windows/docker.sh

@@ -8,7 +8,7 @@ set -e
 
 #cd /suyu
 
-ccache -sv
+ccache -s
 
 rm -rf build
 mkdir -p build && cd build