25 changes: 22 additions & 3 deletions .github/workflows/insider-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ name: insider-linux
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
force_version:
type: boolean
description: Force update version
generate_assets:
type: boolean
description: Generate assets
checkout_pr:
type: string
description: Checkout PR
repository_dispatch:
types: [insider]
push:
Expand Down Expand Up @@ -100,6 +103,8 @@ jobs:
if: env.SHOULD_BUILD == 'yes'

- name: Clone VSCode repo
env:
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
run: ./get_repo.sh
if: env.SHOULD_BUILD == 'yes'

Expand Down Expand Up @@ -207,6 +212,7 @@ jobs:

- name: Update versions repo
env:
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
run: ./update_version.sh
Expand Down Expand Up @@ -252,6 +258,19 @@ jobs:
with:
ref: ${{ env.GITHUB_BRANCH }}

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18.17'

- name: Setup Python 3
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install libkrb5-dev
run: sudo apt-get install -y libkrb5-dev

- name: Install GH
run: ./install_gh.sh
if: env.SHOULD_DEPLOY == 'yes'
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/insider-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ name: insider-macos
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
force_version:
type: boolean
description: Force update version
generate_assets:
type: boolean
description: Generate assets
checkout_pr:
type: string
description: Checkout PR
repository_dispatch:
types: [insider]
push:
Expand Down Expand Up @@ -56,11 +59,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
if: env.VSCODE_ARCH == 'x64'

- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
run: . get_repo.sh

- name: Check PR or cron
Expand Down Expand Up @@ -97,6 +99,7 @@ jobs:

- name: Update versions repo
env:
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
run: ./update_version.sh
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/insider-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ name: insider-windows
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
force_version:
type: boolean
description: Force update version
generate_assets:
type: boolean
description: Generate assets
checkout_pr:
type: string
description: Checkout PR
repository_dispatch:
types: [insider]
push:
Expand Down Expand Up @@ -67,7 +70,7 @@ jobs:

- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
run: ./get_repo.sh

- name: Check PR or cron
Expand Down Expand Up @@ -102,6 +105,7 @@ jobs:

- name: Update versions repo
env:
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
run: ./update_version.sh
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/stable-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ jobs:

- name: Update versions repo
env:
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
run: ./update_version.sh
Expand Down Expand Up @@ -256,6 +257,19 @@ jobs:
with:
ref: ${{ env.GITHUB_BRANCH }}

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18.17'

- name: Setup Python 3
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install libkrb5-dev
run: sudo apt-get install -y libkrb5-dev

- name: Install GH
run: ./install_gh.sh
if: env.SHOULD_DEPLOY == 'yes'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/stable-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
generate_assets:
type: boolean
description: Generate assets
checkout_pr:
type: string
description: Checkout PR
repository_dispatch:
types: [stable]
push:
Expand Down Expand Up @@ -53,9 +56,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.11'
if: env.VSCODE_ARCH == 'x64'

- name: Clone VSCode repo
env:
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
run: . get_repo.sh

- name: Check PR or cron
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/stable-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
generate_assets:
type: boolean
description: Generate assets
checkout_pr:
type: string
description: Checkout PR
repository_dispatch:
types: [stable]
push:
Expand Down Expand Up @@ -64,6 +67,8 @@ jobs:
python-version: '3.11'

- name: Clone VSCode repo
env:
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
run: ./get_repo.sh

- name: Check PR or cron
Expand Down
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then

cd vscode || { echo "'vscode' dir not found"; exit 1; }

export NODE_OPTIONS="--max-old-space-size=8192"

yarn monaco-compile-check
yarn valid-layers-check

Expand Down
2 changes: 2 additions & 0 deletions build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ else
export VSCODE_ARCH="x64"
fi

export NODE_OPTIONS="--max-old-space-size=8192"

echo "OS_NAME=\"${OS_NAME}\""
echo "SKIP_SOURCE=\"${SKIP_SOURCE}\""
echo "SKIP_BUILD=\"${SKIP_BUILD}\""
Expand Down
4 changes: 2 additions & 2 deletions insider.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"tag": "1.87.0",
"commit": "e73419bef379f7956f024557cbf40bd3755a0645"
"tag": "1.88.0",
"commit": "d994aede3529f4d1af9eeaeb234d32fd936243e7"
}
11 changes: 10 additions & 1 deletion package_linux_bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,16 @@ for i in {1..5}; do # try 5 times
echo "Yarn failed $i, trying again..."
done

./build/azure-pipelines/linux/install.sh
./build/azure-pipelines/linux/setup-env.sh

for i in {1..5}; do # try 5 times
yarn --frozen-lockfile --check-files && break
if [ $i -eq 3 ]; then
echo "Yarn failed too many times" >&2
exit 1
fi
echo "Yarn failed $i, trying again..."
done

node build/azure-pipelines/distro/mixin-npm

Expand Down
11 changes: 10 additions & 1 deletion package_linux_reh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,16 @@ for i in {1..5}; do # try 5 times
echo "Yarn failed $i, trying again..."
done

./build/azure-pipelines/linux/install.sh
./build/azure-pipelines/linux/setup-env.sh --only-remote

for i in {1..5}; do # try 5 times
yarn --frozen-lockfile --check-files && break
if [ $i -eq 3 ]; then
echo "Yarn failed too many times" >&2
exit 1
fi
echo "Yarn failed $i, trying again..."
done

EXPECTED_GLIBC_VERSION="2.17" EXPECTED_GLIBCXX_VERSION="3.4.22" ./build/azure-pipelines/linux/verify-glibc-requirements.sh

Expand Down