vscodium/.github/workflows/insider-windows.yml

110 lines
2.9 KiB
YAML
Raw Normal View History

2022-08-29 09:13:25 -04:00
name: insider-windows
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
schedule:
2022-08-29 09:13:25 -04:00
- cron: '0 1 * * *'
push:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
jobs:
windows:
runs-on: windows-2019
2021-10-01 12:47:10 -04:00
defaults:
run:
shell: bash
env:
OS_NAME: 'windows'
2022-08-29 09:13:25 -04:00
VSCODE_ARCH: ${{ matrix.vscode_arch }}
VSCODE_QUALITY: 'insider'
strategy:
fail-fast: false
matrix:
2022-05-07 03:50:30 -04:00
vscode_arch:
- x64
- ia32
2022-05-07 03:50:30 -04:00
- arm64
steps:
2022-04-11 08:37:54 -04:00
- uses: actions/checkout@v3
- name: Setup Node.js environment
2022-04-11 08:37:54 -04:00
uses: actions/setup-node@v3
with:
2022-04-19 16:55:02 -04:00
node-version: 16
- name: Install Yarn
run: npm install -g yarn
2022-05-07 03:50:30 -04:00
- name: Setup Python 3
2022-04-11 08:37:54 -04:00
uses: actions/setup-python@v3
with:
2022-05-07 03:50:30 -04:00
python-version: '3.x'
- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
run: ./get_repo.sh
2021-10-01 12:47:10 -04:00
- name: Check PR or cron
run: ./check_cron_or_pr.sh
- name: Check existing VSCodium tags/releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./check_tags.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_DEPLOY == 'yes'
2021-03-10 12:58:36 -05:00
- name: Compute cache key
id: yarnCacheKey
run: echo "::set-output name=value::$(node build/azure-pipelines/computeYarnCacheKey.js)"
2021-03-10 13:24:52 -05:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 12:58:36 -05:00
- name: Get yarn cache directory path
id: yarnCacheDirPath
run: echo "::set-output name=dir::$(yarn cache dir)"
2021-03-10 13:24:52 -05:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 12:58:36 -05:00
- name: Cache yarn directory
2022-04-11 08:37:54 -04:00
uses: actions/cache@v3
2021-03-10 12:58:36 -05:00
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
2021-03-10 13:38:28 -05:00
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
restore-keys: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-
2021-03-10 12:58:36 -05:00
if: env.SHOULD_BUILD == 'yes'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
npm_config_arch: ${{ matrix.vscode_arch }}
npm_config_target_arch: ${{ matrix.vscode_arch }}
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2021-10-01 12:47:10 -04:00
- name: Prepare artifacts
run: ./prepare_artifacts.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Release
env:
2022-08-29 16:56:03 -04:00
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2021-10-01 12:47:10 -04:00
run: ./release.sh
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Update versions repo
2021-03-10 10:48:45 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
run: ./update_version.sh
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}