ci: disable insider and reh on windows arm64

This commit is contained in:
Baptiste Augrain 2022-08-17 07:46:48 +02:00
parent 637ec23444
commit 7a2a3a7ab0
4 changed files with 8 additions and 1 deletions

View File

@ -9,6 +9,7 @@ on:
schedule:
- cron: '0 0 * * *'
push:
branches: [ master ]
pull_request:
branches: [ master ]

View File

@ -9,6 +9,7 @@ on:
schedule:
- cron: '0 0 * * *'
push:
branches: [ master ]
pull_request:
branches: [ master ]

View File

@ -9,6 +9,7 @@ on:
schedule:
- cron: '0 0 * * *'
push:
branches: [ master ]
pull_request:
branches: [ master ]

View File

@ -310,7 +310,11 @@ if [ "${VSCODIUM_ASSETS}" != "null" ]; then
fi
fi
else
if [[ "${OS_NAME}" == "linux" ]]; then
if [[ "${OS_NAME}" == "windows" ]]; then
if [[ "${VSCODE_ARCH}" == "arm64" ]]; then
export SHOULD_BUILD_REH="no"
fi
elif [[ "${OS_NAME}" == "linux" ]]; then
if [[ "${VSCODE_ARCH}" != "x64" ]]; then
export SHOULD_BUILD_APPIMAGE="no"
fi