ci(linux): yarn install done by azure script [skip ci]

This commit is contained in:
Baptiste Augrain 2024-02-19 15:44:12 +01:00
parent 0b4117ed49
commit 509931a6d1
2 changed files with 9 additions and 6 deletions

View file

@ -121,8 +121,9 @@ jobs:
- name: Upload assets
uses: actions/upload-artifact@v4
with:
name: assets
name: ${{ matrix.vscode_arch }}
path: assets/
retention-days: 3
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true'
aur:

View file

@ -82,9 +82,9 @@ if [[ "${OS_NAME}" == "linux" ]]; then
export npm_config_arm_version=7
fi
CHILD_CONCURRENCY=1 yarn --frozen-lockfile --check-files --network-timeout 180000
if [[ "${CI_BUILD}" != "no" ]]; then
if [[ "${CI_BUILD}" == "no" ]]; then
yarn --frozen-lockfile --check-files
else
mkdir -p .build
export VSCODE_SYSROOT_PREFIX='-glibc-2.17'
@ -95,8 +95,10 @@ if [[ "${OS_NAME}" == "linux" ]]; then
if [[ "${VSCODE_ARCH}" == "x64" || "${VSCODE_ARCH}" == "arm64" ]]; then
VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME="vscodium/vscodium-linux-build-agent:centos7-devtoolset8-${VSCODE_ARCH}"
else
VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME="vscodium/vscodium-linux-build-agent:bionic-devtoolset-${VSCODE_ARCH}"
elif [[ "${VSCODE_ARCH}" == "armhf" ]]; then
VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME="vscodium/vscodium-linux-build-agent:bionic-devtoolset-arm32v7"
elif [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then
VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME="vscodium/vscodium-linux-build-agent:bionic-devtoolset-ppc64le"
fi
export VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME