2022-08-29 13:13:25 +00:00
|
|
|
name: insider-macos
|
2020-09-18 12:41:04 +00:00
|
|
|
|
|
|
|
on:
|
2021-03-28 21:07:35 +00:00
|
|
|
workflow_dispatch:
|
2022-08-30 11:55:17 +00:00
|
|
|
inputs:
|
|
|
|
release_version:
|
|
|
|
type: string
|
|
|
|
description: Forced release version
|
2023-12-16 23:30:20 +00:00
|
|
|
generate_assets:
|
2023-08-04 12:36:30 +00:00
|
|
|
type: boolean
|
2023-12-16 23:30:20 +00:00
|
|
|
description: Generate assets
|
2023-11-15 22:31:19 +00:00
|
|
|
repository_dispatch:
|
|
|
|
types: [insider]
|
2020-09-18 12:41:04 +00:00
|
|
|
push:
|
2022-08-29 13:13:25 +00:00
|
|
|
branches: [ insider ]
|
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: [ insider ]
|
2022-08-22 22:59:49 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2020-09-18 12:41:04 +00:00
|
|
|
|
2022-11-02 19:03:09 +00:00
|
|
|
env:
|
|
|
|
APP_NAME: VSCodium
|
|
|
|
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
|
2023-09-03 12:59:11 +00:00
|
|
|
GITHUB_BRANCH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'insider' }}
|
2022-11-02 19:03:09 +00:00
|
|
|
OS_NAME: osx
|
|
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
|
|
VSCODE_QUALITY: insider
|
|
|
|
|
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:
|
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
2021-09-18 08:12:10 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
2022-09-04 18:50:32 +00:00
|
|
|
- runner: macos-12
|
2022-04-27 15:58:03 +00:00
|
|
|
vscode_arch: x64
|
2024-02-03 18:30:27 +00:00
|
|
|
- runner: macos-14
|
2022-04-27 15:58:03 +00:00
|
|
|
vscode_arch: arm64
|
2021-09-18 08:12:10 +00:00
|
|
|
|
2020-09-18 12:41:04 +00:00
|
|
|
steps:
|
2023-09-26 12:16:53 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-08-30 12:46:23 +00:00
|
|
|
with:
|
2023-09-03 12:59:11 +00:00
|
|
|
ref: ${{ env.GITHUB_BRANCH }}
|
2021-10-01 16:47:10 +00:00
|
|
|
|
2020-09-18 12:41:04 +00:00
|
|
|
- name: Setup Node.js environment
|
2023-10-31 11:39:06 +00:00
|
|
|
uses: actions/setup-node@v4
|
2020-09-18 12:41:04 +00:00
|
|
|
with:
|
2023-10-09 22:06:20 +00:00
|
|
|
node-version: '18.17'
|
2021-03-10 15:48:45 +00:00
|
|
|
|
2023-11-07 18:24:04 +00:00
|
|
|
- name: Setup Python 3
|
2023-12-11 13:45:10 +00:00
|
|
|
uses: actions/setup-python@v5
|
2023-11-07 18:24:04 +00:00
|
|
|
with:
|
|
|
|
python-version: '3.11'
|
2023-11-10 12:31:58 +00:00
|
|
|
if: env.VSCODE_ARCH == 'x64'
|
2023-11-07 18:24:04 +00:00
|
|
|
|
2020-09-18 12:41:04 +00:00
|
|
|
- name: Clone VSCode repo
|
2022-08-30 11:55:17 +00:00
|
|
|
env:
|
|
|
|
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
|
2021-10-01 16:47:10 +00:00
|
|
|
run: . get_repo.sh
|
|
|
|
|
|
|
|
- name: Check PR or cron
|
2023-08-04 12:36:30 +00:00
|
|
|
env:
|
2023-12-16 23:30:20 +00:00
|
|
|
GENERATE_ASSETS: ${{ github.event.inputs.generate_assets }}
|
2021-10-01 16:47:10 +00:00
|
|
|
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 }}
|
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
|
|
|
|
2020-09-18 12:41:04 +00:00
|
|
|
- name: Build
|
2020-09-18 13:44:31 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-09-18 12:41:04 +00:00
|
|
|
run: ./build.sh
|
2020-09-20 21:26:06 +00:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
2020-09-18 12:41:04 +00:00
|
|
|
|
2022-10-06 20:15:41 +00:00
|
|
|
- name: Prepare assets
|
2020-09-18 22:34:07 +00:00
|
|
|
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 20:15:41 +00:00
|
|
|
run: ./prepare_assets.sh
|
2023-12-16 23:30:20 +00:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
2020-09-18 21:54:45 +00:00
|
|
|
|
2020-09-18 12:41:04 +00:00
|
|
|
- name: Release
|
|
|
|
env:
|
2022-08-30 11:55:17 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
2022-09-19 15:09:16 +00:00
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
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
|
|
|
|
2020-09-18 22:34:07 +00:00
|
|
|
- name: Update versions repo
|
|
|
|
env:
|
2020-09-18 23:30:10 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
2020-09-18 22:34:07 +00:00
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
2022-09-19 15:09:16 +00:00
|
|
|
run: ./update_version.sh
|
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2022-05-07 15:18:14 +00:00
|
|
|
|
|
|
|
- name: Clean up keychain
|
2022-05-07 15:29:18 +00:00
|
|
|
if: always()
|
2022-05-07 15:18:14 +00:00
|
|
|
run: |
|
2022-05-07 15:29:18 +00:00
|
|
|
KEYCHAIN=$RUNNER_TEMP/build.keychain
|
|
|
|
|
|
|
|
if [ -f "$KEYCHAIN" ];
|
|
|
|
then
|
|
|
|
security delete-keychain $KEYCHAIN
|
|
|
|
fi
|