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

111 lines
3.1 KiB
YAML
Raw Normal View History

2022-08-29 13:13:25 +00:00
name: stable-macos
2020-09-18 12:41:04 +00:00
on:
workflow_dispatch:
inputs:
new_release:
2022-08-17 04:23:19 +00:00
type: boolean
description: Force new Release
2020-09-20 22:28:07 +00:00
schedule:
2022-09-02 15:12:41 +00:00
- cron: '0 18 * * *'
2020-09-18 12:41:04 +00:00
push:
2022-08-29 13:13:25 +00:00
branches: [ master ]
2022-08-22 22:59:49 +00:00
paths-ignore:
- '**/*.md'
2020-09-18 12:41:04 +00:00
pull_request:
2022-08-29 13:13:25 +00:00
branches: [ master ]
2022-08-22 22:59:49 +00:00
paths-ignore:
- '**/*.md'
2020-09-18 12:41:04 +00:00
jobs:
build:
2022-04-27 15:58:03 +00:00
runs-on: ${{ matrix.runner }}
2022-08-29 13:13:25 +00:00
env:
OS_NAME: 'osx'
VSCODE_ARCH: ${{ matrix.vscode_arch }}
VSCODE_QUALITY: 'stable'
2021-09-18 08:12:10 +00:00
strategy:
fail-fast: false
matrix:
include:
2022-09-13 22:00:52 +00:00
- runner: macos-12
2022-04-27 15:58:03 +00:00
vscode_arch: x64
- runner: [self-hosted, macOS, ARM64]
vscode_arch: arm64
2021-09-18 08:12:10 +00:00
2020-09-18 12:41:04 +00:00
steps:
2022-04-11 12:37:54 +00:00
- uses: actions/checkout@v3
2021-10-01 16:47:10 +00:00
2020-09-18 12:41:04 +00:00
- name: Setup Node.js environment
2022-04-11 12:37:54 +00:00
uses: actions/setup-node@v3
2020-09-18 12:41:04 +00:00
with:
2022-04-19 20:55:02 +00:00
node-version: 16
2021-03-10 15:48:45 +00:00
2020-09-18 12:41:04 +00:00
- name: Clone VSCode repo
2021-10-01 16:47:10 +00:00
run: . get_repo.sh
- name: Check PR or cron
run: . check_cron_or_pr.sh
2020-09-18 12:41:04 +00:00
- name: Check existing VSCodium tags/releases
2020-09-18 13:01:29 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEW_RELEASE: ${{ github.event.inputs.new_release }}
2021-10-01 16:47:10 +00:00
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'
2020-09-18 12:41:04 +00:00
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-09-18 12:41:04 +00:00
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2020-09-18 12:41:04 +00:00
- name: Prepare artifacts
env:
CERTIFICATE_OSX_P12: ${{ secrets.CERTIFICATE_OSX_P12 }}
CERTIFICATE_OSX_PASSWORD: ${{ secrets.CERTIFICATE_OSX_PASSWORD }}
CERTIFICATE_OSX_ID: ${{ secrets.CERTIFICATE_OSX_ID }}
2021-10-01 16:47:10 +00:00
run: ./prepare_artifacts.sh
2021-03-10 15:48:45 +00:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2020-09-18 21:54:45 +00:00
2020-09-18 12:41:04 +00:00
- 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'
2020-09-18 12:41:04 +00:00
- name: Update versions repo
2021-03-10 15:48:45 +00: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 }}
2022-05-07 15:18:14 +00:00
- name: Clean up keychain
if: always()
2022-05-07 15:18:14 +00:00
run: |
KEYCHAIN=$RUNNER_TEMP/build.keychain
if [ -f "$KEYCHAIN" ];
then
security delete-keychain $KEYCHAIN
fi