2022-08-29 09:13:25 -04:00
|
|
|
name: stable-windows
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
on:
|
2021-03-28 17:07:35 -04:00
|
|
|
workflow_dispatch:
|
2022-08-29 10:18:59 -04:00
|
|
|
branches: [ master ]
|
2022-08-16 09:33:34 -04:00
|
|
|
inputs:
|
|
|
|
new_release:
|
2022-08-17 00:23:19 -04:00
|
|
|
type: boolean
|
2022-08-16 09:33:34 -04:00
|
|
|
description: Force new Release
|
2021-01-12 15:01:29 -05:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
|
|
|
push:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2021-01-12 15:01:29 -05:00
|
|
|
pull_request:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
windows:
|
2022-03-16 04:02:30 -04:00
|
|
|
runs-on: windows-2019
|
2021-10-01 12:47:10 -04:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
2021-01-12 15:01:29 -05:00
|
|
|
env:
|
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
2021-01-12 16:56:52 -05:00
|
|
|
OS_NAME: 'windows'
|
2021-01-12 15:01:29 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-05-07 03:50:30 -04:00
|
|
|
vscode_arch:
|
|
|
|
- x64
|
2022-05-14 12:44:59 -04:00
|
|
|
- ia32
|
2022-05-07 03:50:30 -04:00
|
|
|
- arm64
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
steps:
|
2022-04-11 08:37:54 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Setup Node.js environment
|
2022-04-11 08:37:54 -04:00
|
|
|
uses: actions/setup-node@v3
|
2021-01-12 15:01:29 -05:00
|
|
|
with:
|
2022-04-19 16:55:02 -04:00
|
|
|
node-version: 16
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- 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
|
2021-01-12 15:01:29 -05:00
|
|
|
with:
|
2022-05-07 03:50:30 -04:00
|
|
|
python-version: '3.x'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Clone VSCode repo
|
|
|
|
run: ./get_repo.sh
|
2021-10-01 12:47:10 -04:00
|
|
|
|
|
|
|
- name: Check PR or cron
|
|
|
|
run: ./check_cron_or_pr.sh
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Check existing VSCodium tags/releases
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-08-16 09:33:34 -04:00
|
|
|
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
2021-01-12 15:01:29 -05:00
|
|
|
run: ./check_tags.sh
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
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'
|
|
|
|
|
2021-01-12 15:01:29 -05:00
|
|
|
- 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'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Release
|
|
|
|
env:
|
2021-11-10 04:40:20 -05:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-10-01 12:47:10 -04:00
|
|
|
run: ./release.sh
|
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Update versions repo
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2021-01-12 15:01:29 -05:00
|
|
|
run: ./update_version.sh
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
|
|
|
2022-08-14 05:22:00 -04:00
|
|
|
# - name: Set MS_TAG as job output for release-winget job
|
|
|
|
# if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
|
|
|
# run: echo "::set-output name=tagname::${{ env.MS_TAG }}"
|
|
|
|
|
|
|
|
# release-winget:
|
|
|
|
# name: Release to WinGet
|
|
|
|
# needs: windows
|
|
|
|
# if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
|
|
|
# runs-on: windows-latest # action can only be run on windows
|
|
|
|
# steps:
|
|
|
|
# - name: Release to WinGet
|
|
|
|
# uses: vedantmgoyal2009/winget-releaser@latest
|
|
|
|
# with:
|
|
|
|
# identifier: VSCodium.VSCodium
|
|
|
|
# release-tag: ${{ needs.windows.outputs.tagname }}
|
|
|
|
# installers-regex: '\.exe$' # only .exe files
|
|
|
|
# token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|