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

112 lines
3.1 KiB
YAML
Raw Normal View History

2022-08-29 09:13:25 -04:00
name: insider-macos
2020-09-18 08:41:04 -04:00
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
2022-10-24 15:27:03 -04:00
new_release:
type: boolean
description: Force new Release
test_asset_builder:
type: boolean
description: Test the assets builder
2020-09-20 18:28:07 -04:00
schedule:
- cron: '0 8 * * *'
2020-09-18 08:41:04 -04:00
push:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
2020-09-18 08:41:04 -04:00
pull_request:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
2020-09-18 08:41:04 -04:00
env:
APP_NAME: VSCodium
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
GITHUB_BRANCH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'insider' }}
OS_NAME: osx
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
VSCODE_QUALITY: insider
2020-09-18 08:41:04 -04:00
jobs:
build:
2022-04-27 11:58:03 -04:00
runs-on: ${{ matrix.runner }}
2022-08-29 09:13:25 -04:00
env:
VSCODE_ARCH: ${{ matrix.vscode_arch }}
2021-09-18 04:12:10 -04:00
strategy:
fail-fast: false
matrix:
include:
2022-09-04 14:50:32 -04:00
- runner: macos-12
2022-04-27 11:58:03 -04:00
vscode_arch: x64
- runner: [self-hosted, macOS, ARM64]
vscode_arch: arm64
2021-09-18 04:12:10 -04:00
2020-09-18 08:41:04 -04:00
steps:
2022-04-11 08:37:54 -04:00
- uses: actions/checkout@v3
with:
ref: ${{ env.GITHUB_BRANCH }}
2021-10-01 12:47:10 -04:00
2020-09-18 08:41:04 -04:00
- name: Setup Node.js environment
2022-04-11 08:37:54 -04:00
uses: actions/setup-node@v3
2020-09-18 08:41:04 -04:00
with:
node-version: '18'
2021-03-10 10:48:45 -05:00
2020-09-18 08:41:04 -04:00
- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
2021-10-01 12:47:10 -04:00
run: . get_repo.sh
- name: Check PR or cron
env:
TEST_ASSET_BUILDER: ${{ github.event.inputs.test_asset_builder }}
2021-10-01 12:47:10 -04:00
run: . check_cron_or_pr.sh
2020-09-18 08:41:04 -04:00
- name: Check existing VSCodium tags/releases
2020-09-18 09:01:29 -04:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-10-24 15:27:03 -04:00
NEW_RELEASE: ${{ github.event.inputs.new_release }}
2021-10-01 12:47:10 -04:00
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
2020-09-18 08:41:04 -04:00
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-09-18 08:41:04 -04:00
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2020-09-18 08:41:04 -04:00
2022-10-06 16:15:41 -04:00
- name: Prepare assets
env:
CERTIFICATE_OSX_P12: ${{ secrets.CERTIFICATE_OSX_P12 }}
CERTIFICATE_OSX_PASSWORD: ${{ secrets.CERTIFICATE_OSX_PASSWORD }}
CERTIFICATE_OSX_ID: ${{ secrets.CERTIFICATE_OSX_ID }}
2022-10-06 16:15:41 -04:00
run: ./prepare_assets.sh
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.test_asset_builder == 'true')
2020-09-18 17:54:45 -04:00
2020-09-18 08:41:04 -04:00
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2022-09-19 11:09:16 -04:00
GITHUB_USERNAME: ${{ github.repository_owner }}
2021-10-01 12:47:10 -04:00
run: ./release.sh
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2020-09-18 08:41:04 -04:00
- name: Update versions repo
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
2022-09-19 11:09:16 -04:00
run: ./update_version.sh
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2022-05-07 11:18:14 -04:00
- name: Clean up keychain
if: always()
2022-05-07 11:18:14 -04:00
run: |
KEYCHAIN=$RUNNER_TEMP/build.keychain
if [ -f "$KEYCHAIN" ];
then
security delete-keychain $KEYCHAIN
fi