Skip to content

Commit

Permalink
ci: add flag to disable reh build
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Oct 14, 2024
1 parent 8aa6281 commit f025329
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/insider-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,20 @@ jobs:
fail-fast: false
matrix:
include:
- vscode_arch: x64
- slug: X64
vscode_arch: x64
npm_arch: x64
- vscode_arch: arm64
- slug: ARM64
vscode_arch: arm64
npm_arch: arm64
- vscode_arch: armhf
- slug: ARM
vscode_arch: armhf
npm_arch: arm
- vscode_arch: ppc64le
- slug: PPC64
vscode_arch: ppc64le
npm_arch: ppc64
- vscode_arch: riscv64
- slug: RISCV64
vscode_arch: riscv64
npm_arch: riscv64
env:
BUILD_SOURCEVERSION: ${{ needs.compile.outputs.BUILD_SOURCEVERSION }}
Expand All @@ -278,7 +283,7 @@ jobs:
SHOULD_BUILD: ${{ needs.check.outputs.SHOULD_BUILD }}
SHOULD_DEPLOY: ${{ needs.check.outputs.SHOULD_DEPLOY }}
VSCODE_ARCH: ${{ matrix.vscode_arch }}
if: needs.check.outputs.SHOULD_BUILD == 'yes' || github.event.inputs.generate_assets == 'true'
if: (needs.check.outputs.SHOULD_BUILD == 'yes' || github.event.inputs.generate_assets == 'true') && vars[format('DISABLE_INSIDER_LINUX_REH_{0}', matrix.slug)] != 'yes'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f025329

Please sign in to comment.