Răsfoiți Sursa

Merge branch 'master' into insider

Baptiste Augrain 2 ani în urmă
părinte
comite
31b5e5b919
3 a modificat fișierele cu 8 adăugiri și 3 ștergeri
  1. 1 1
      .github/workflows/insider-linux.yml
  2. 1 1
      .github/workflows/stable-linux.yml
  3. 6 1
      check_tags.sh

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

@@ -133,7 +133,7 @@ jobs:
           npm_arch: arm64
           npm_arch: arm64
           image: vscodium/vscodium-linux-build-agent:buster-arm64
           image: vscodium/vscodium-linux-build-agent:buster-arm64
         - vscode_arch: pp64le
         - vscode_arch: pp64le
-          npm_arch: ppc64le
+          npm_arch: ppc64
           image: vscodium/vscodium-linux-build-agent:bionic-ppc64le
           image: vscodium/vscodium-linux-build-agent:bionic-ppc64le
         - vscode_arch: armhf
         - vscode_arch: armhf
           npm_arch: arm
           npm_arch: arm

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

@@ -133,7 +133,7 @@ jobs:
           npm_arch: arm
           npm_arch: arm
           image: vscodium/vscodium-linux-build-agent:buster-armhf
           image: vscodium/vscodium-linux-build-agent:buster-armhf
         - vscode_arch: ppc64le
         - vscode_arch: ppc64le
-          npm_arch: ppc64le
+          npm_arch: ppc64
           image: vscodium/vscodium-linux-build-agent:bionic-ppc64le
           image: vscodium/vscodium-linux-build-agent:bionic-ppc64le
     container:
     container:
       image: ${{ matrix.image }}
       image: ${{ matrix.image }}

+ 6 - 1
check_tags.sh

@@ -344,7 +344,12 @@ if [ "${ASSETS}" != "null" ]; then
   fi
   fi
 else
 else
   if [[ "${OS_NAME}" == "linux" ]]; then
   if [[ "${OS_NAME}" == "linux" ]]; then
-    if [[ "${VSCODE_ARCH}" != "x64" ]]; then
+    if [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then
+      SHOULD_BUILD_DEB="no"
+      SHOULD_BUILD_APPIMAGE="no"
+      SHOULD_BUILD_RPM="no"
+      SHOULD_BUILD_TAR="no"
+    elif [[ "${VSCODE_ARCH}" != "x64" ]]; then
       export SHOULD_BUILD_APPIMAGE="no"
       export SHOULD_BUILD_APPIMAGE="no"
     fi
     fi
   elif [[ "${OS_NAME}" == "osx" ]]; then
   elif [[ "${OS_NAME}" == "osx" ]]; then