From 08114ab9430f899fc8d2a05c0b775aa4af97d6f3 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Tue, 13 Jun 2023 20:39:59 +0200 Subject: [PATCH 1/2] fix(linux): only reh for ppc64le [skip ci] --- check_tags.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/check_tags.sh b/check_tags.sh index 138fd2c..9ef4d90 100755 --- a/check_tags.sh +++ b/check_tags.sh @@ -344,7 +344,12 @@ if [ "${ASSETS}" != "null" ]; then fi else 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" fi elif [[ "${OS_NAME}" == "osx" ]]; then From ff05d093c902d1774b902eed59ecef74e0b755fd Mon Sep 17 00:00:00 2001 From: Lex <115115137+lex-ibm@users.noreply.github.com> Date: Wed, 14 Jun 2023 01:16:06 -0500 Subject: [PATCH 2/2] fix: incorrect npm_config_arch for ppc64le (#1547) --- .github/workflows/insider-linux.yml | 2 +- .github/workflows/stable-linux.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/insider-linux.yml b/.github/workflows/insider-linux.yml index fc02bbd..eff164d 100644 --- a/.github/workflows/insider-linux.yml +++ b/.github/workflows/insider-linux.yml @@ -133,7 +133,7 @@ jobs: npm_arch: arm64 image: vscodium/vscodium-linux-build-agent:buster-arm64 - vscode_arch: pp64le - npm_arch: ppc64le + npm_arch: ppc64 image: vscodium/vscodium-linux-build-agent:bionic-ppc64le - vscode_arch: armhf npm_arch: arm diff --git a/.github/workflows/stable-linux.yml b/.github/workflows/stable-linux.yml index 54d5a53..d5881fc 100644 --- a/.github/workflows/stable-linux.yml +++ b/.github/workflows/stable-linux.yml @@ -133,7 +133,7 @@ jobs: npm_arch: arm image: vscodium/vscodium-linux-build-agent:buster-armhf - vscode_arch: ppc64le - npm_arch: ppc64le + npm_arch: ppc64 image: vscodium/vscodium-linux-build-agent:bionic-ppc64le container: image: ${{ matrix.image }}