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

147 lines
4.0 KiB
YAML
Raw Normal View History

2022-08-29 16:13:25 +03:00
name: insider-windows
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
schedule:
2022-09-02 18:12:41 +03:00
- cron: '0 7 * * *'
push:
2022-08-29 16:13:25 +03:00
branches: [ insider ]
2022-08-23 01:59:49 +03:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 16:13:25 +03:00
branches: [ insider ]
2022-08-23 01:59:49 +03:00
paths-ignore:
- '**/*.md'
jobs:
2022-09-19 08:27:12 +03:00
build:
runs-on: windows-2019
2021-10-01 19:47:10 +03:00
defaults:
run:
shell: bash
env:
OS_NAME: 'windows'
2022-08-29 16:13:25 +03:00
VSCODE_ARCH: ${{ matrix.vscode_arch }}
VSCODE_QUALITY: 'insider'
strategy:
fail-fast: false
matrix:
2022-05-07 10:50:30 +03:00
vscode_arch:
- x64
- ia32
2022-05-07 10:50:30 +03:00
- arm64
2022-09-19 12:03:49 +03:00
outputs:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
steps:
2022-04-11 15:37:54 +03:00
- uses: actions/checkout@v3
with:
ref: insider
- name: Setup Node.js environment
2022-04-11 15:37:54 +03:00
uses: actions/setup-node@v3
with:
2022-04-19 23:55:02 +03:00
node-version: 16
- name: Install Yarn
run: npm install -g yarn
2022-05-07 10:50:30 +03:00
- name: Setup Python 3
2022-04-11 15:37:54 +03:00
uses: actions/setup-python@v3
with:
2022-05-07 10:50:30 +03:00
python-version: '3.x'
- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
run: ./get_repo.sh
2021-10-01 19:47:10 +03: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 18:48:45 +03:00
if: env.SHOULD_DEPLOY == 'yes'
2021-03-10 20:58:36 +03:00
- name: Compute cache key
id: yarnCacheKey
run: echo "::set-output name=value::$(node build/azure-pipelines/computeYarnCacheKey.js)"
2021-03-10 21:24:52 +03:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 20:58:36 +03:00
- name: Get yarn cache directory path
id: yarnCacheDirPath
run: echo "::set-output name=dir::$(yarn cache dir)"
2021-03-10 21:24:52 +03:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 20:58:36 +03:00
- name: Cache yarn directory
2022-04-11 15:37:54 +03:00
uses: actions/cache@v3
2021-03-10 20:58:36 +03:00
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
2021-03-10 21:38:28 +03: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 20:58:36 +03: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 19:47:10 +03:00
- name: Prepare artifacts
run: ./prepare_artifacts.sh
2021-03-10 18:48:45 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2022-09-19 18:09:16 +03:00
GITHUB_USERNAME: ${{ github.repository_owner }}
2021-10-01 19:47:10 +03:00
run: ./release.sh
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Update versions repo
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
2022-09-19 18:09:16 +03:00
run: ./update_version.sh
2022-09-19 08:27:12 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
winget:
needs: build
runs-on: windows-latest
2022-09-19 12:12:45 +03:00
defaults:
run:
shell: bash
2022-09-19 08:27:12 +03:00
env:
VSCODE_QUALITY: 'insider'
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
steps:
- uses: actions/checkout@v3
with:
ref: insider
- name: Check version
run: ./stores/winget/check_version.sh
env:
RELEASE_VERSION: ${{ needs.build.outputs.RELEASE_VERSION }}
- name: Release to WinGet
2022-09-19 17:24:59 +03:00
uses: daiyam/winget-releaser@insider
2022-09-19 08:27:12 +03:00
with:
identifier: VSCodium.VSCodium.Insiders
2022-09-19 17:24:59 +03:00
version: ${{ env.RELEASE_VERSION }}
release-repository: vscodium-insiders
2022-09-19 17:24:59 +03:00
release-tag: ${{ env.RELEASE_VERSION }}-insider
2022-09-19 08:27:12 +03:00
installers-regex: '\.exe$' # only .exe files
token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
if: env.SHOULD_DEPLOY == 'yes'