浏览代码

fixed reference to gitlab in ci

Crimson-Hawk 2 年之前
父节点
当前提交
e1f809079e
共有 3 个文件被更改,包括 3 次插入3 次删除
  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