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

137 lines
3.7 KiB
YAML
Raw Normal View History

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