Browse Source

ci: disable insider and reh on windows arm64

Baptiste Augrain 2 years ago
parent
commit
7a2a3a7ab0
4 changed files with 8 additions and 1 deletions
  1. 1 0
      .github/workflows/linux.yml
  2. 1 0
      .github/workflows/macos.yml
  3. 1 0
      .github/workflows/windows.yml
  4. 5 1
      check_tags.sh

+ 1 - 0
.github/workflows/linux.yml

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

+ 1 - 0
.github/workflows/macos.yml

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

+ 1 - 0
.github/workflows/windows.yml

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

+ 5 - 1
check_tags.sh

@@ -310,7 +310,11 @@ if [ "${VSCODIUM_ASSETS}" != "null" ]; then
     fi
     fi
   fi
   fi
 else
 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
     if [[ "${VSCODE_ARCH}" != "x64" ]]; then
       export SHOULD_BUILD_APPIMAGE="no"
       export SHOULD_BUILD_APPIMAGE="no"
     fi
     fi