From aafcc95a3f7d00ca4e15ea58616f47a3267f9b36 Mon Sep 17 00:00:00 2001 From: psi29a Date: Thu, 16 Sep 2021 21:59:46 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d0888598a5..c169917f14 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -375,10 +375,10 @@ variables: &tests-targets - $time = (Get-Date -Format "HH:mm:ss") - echo ${time} - echo "started by ${GITLAB_USER_NAME}" - - export CCACHE_BASEDIR="`pwd`" - - export CCACHE_DIR="`pwd`/ccache" - - mkdir -pv "$CCACHE_DIR" - - ccache -z -M "${CCACHE_SIZE}" + - $env:CCACHE_BASEDIR = Get-Location + - $env:CCACHE_DIR = "$(Get-Location)\ccache" + - New-Item -Type Directory -Force -Path $env:CCACHE_DIR + - ccache -z -M $CCACHE_SIZE - sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V -N -b -t -f - cd MSVC2019_64_Ninja - .\ActivateMSVC.ps1