Add windows 2019

This commit is contained in:
Andrea Cavalli 2023-05-14 00:05:17 +02:00
parent 2b2cb07dea
commit 025e72806d
2 changed files with 5 additions and 1 deletions

View File

@ -129,7 +129,11 @@ jobs:
echo "REVISION: $REVISION"
if [[ -f "./.github/workflows/scripts/install_deps_${SAFE_TYPE}.sh" ]]; then
sudo ./.github/workflows/scripts/install_deps_${SAFE_TYPE}.sh
if [[ "$GH_MATRIX_OS" == *"windows"* ]]; then
./.github/workflows/scripts/install_deps_${SAFE_TYPE}.sh
else
sudo ./.github/workflows/scripts/install_deps_${SAFE_TYPE}.sh
fi
fi
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3