2022-08-29 09:13:25 -04:00
|
|
|
name: stable-macos
|
2020-09-18 08:41:04 -04:00
|
|
|
|
|
|
|
on:
|
2021-03-28 17:07:35 -04:00
|
|
|
workflow_dispatch:
|
2022-08-16 09:33:34 -04:00
|
|
|
inputs:
|
2023-01-08 09:33:27 -05:00
|
|
|
force_version:
|
|
|
|
type: boolean
|
|
|
|
description: Force update version
|
2023-12-16 18:30:20 -05:00
|
|
|
generate_assets:
|
2023-08-04 08:36:30 -04:00
|
|
|
type: boolean
|
2023-12-16 18:30:20 -05:00
|
|
|
description: Generate assets
|
2024-04-04 17:14:54 -04:00
|
|
|
checkout_pr:
|
|
|
|
type: string
|
|
|
|
description: Checkout PR
|
2023-11-15 16:30:37 -05:00
|
|
|
repository_dispatch:
|
|
|
|
types: [stable]
|
2020-09-18 08:41:04 -04:00
|
|
|
push:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
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: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2020-09-18 08:41:04 -04:00
|
|
|
|
2022-11-02 15:03:09 -04:00
|
|
|
env:
|
|
|
|
APP_NAME: VSCodium
|
|
|
|
ASSETS_REPOSITORY: ${{ github.repository }}
|
|
|
|
OS_NAME: osx
|
|
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
|
|
VSCODE_QUALITY: stable
|
|
|
|
|
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-13 18:00:52 -04:00
|
|
|
- runner: macos-12
|
2022-04-27 11:58:03 -04:00
|
|
|
vscode_arch: x64
|
2024-04-12 20:39:23 -04:00
|
|
|
# - runner: macos-14
|
|
|
|
- runner: [self-hosted, macOS, ARM64]
|
2022-04-27 11:58:03 -04:00
|
|
|
vscode_arch: arm64
|
2021-09-18 04:12:10 -04:00
|
|
|
|
2020-09-18 08:41:04 -04:00
|
|
|
steps:
|
2023-09-26 08:16:53 -04:00
|
|
|
- uses: actions/checkout@v4
|
2021-10-01 12:47:10 -04:00
|
|
|
|
2020-09-18 08:41:04 -04:00
|
|
|
- name: Setup Node.js environment
|
2023-10-31 07:39:06 -04:00
|
|
|
uses: actions/setup-node@v4
|
2020-09-18 08:41:04 -04:00
|
|
|
with:
|
2024-06-01 12:41:51 -04:00
|
|
|
node-version: '20.12'
|
2021-03-10 10:48:45 -05:00
|
|
|
|
2023-11-07 13:24:04 -05:00
|
|
|
- name: Setup Python 3
|
2023-12-11 08:45:10 -05:00
|
|
|
uses: actions/setup-python@v5
|
2023-11-07 13:24:04 -05:00
|
|
|
with:
|
|
|
|
python-version: '3.11'
|
2024-04-12 20:42:44 -04:00
|
|
|
if: env.VSCODE_ARCH == 'x64'
|
2023-11-07 13:24:04 -05:00
|
|
|
|
2020-09-18 08:41:04 -04:00
|
|
|
- name: Clone VSCode repo
|
2024-04-04 17:14:54 -04:00
|
|
|
env:
|
|
|
|
PULL_REQUEST_ID: ${{ github.event.inputs.checkout_pr }}
|
2021-10-01 12:47:10 -04:00
|
|
|
run: . get_repo.sh
|
|
|
|
|
|
|
|
- name: Check PR or cron
|
2023-08-04 08:36:30 -04:00
|
|
|
env:
|
2023-12-16 18:30:20 -05:00
|
|
|
GENERATE_ASSETS: ${{ github.event.inputs.generate_assets }}
|
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 }}
|
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
|
2020-09-18 09:44:31 -04:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-09-18 08:41:04 -04:00
|
|
|
run: ./build.sh
|
2020-09-20 17:26:06 -04:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
2020-09-18 08:41:04 -04:00
|
|
|
|
2022-10-06 16:15:41 -04:00
|
|
|
- name: Prepare assets
|
2020-09-18 18:34:07 -04:00
|
|
|
env:
|
2024-06-01 12:31:12 -04:00
|
|
|
CERTIFICATE_OSX_APP_PASSWORD: ${{ secrets.CERTIFICATE_OSX_NEW_APP_PASSWORD }}
|
|
|
|
CERTIFICATE_OSX_ID: ${{ secrets.CERTIFICATE_OSX_NEW_ID }}
|
|
|
|
CERTIFICATE_OSX_P12_DATA: ${{ secrets.CERTIFICATE_OSX_NEW_P12_DATA }}
|
|
|
|
CERTIFICATE_OSX_P12_PASSWORD: ${{ secrets.CERTIFICATE_OSX_NEW_P12_PASSWORD }}
|
2024-06-01 21:03:55 -04:00
|
|
|
CERTIFICATE_OSX_TEAM_ID: ${{ secrets.CERTIFICATE_OSX_NEW_TEAM_ID }}
|
2022-10-06 16:15:41 -04:00
|
|
|
run: ./prepare_assets.sh
|
2023-12-16 18:30:20 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
2020-09-18 17:54:45 -04:00
|
|
|
|
2020-09-18 08:41:04 -04: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'
|
2020-09-18 08:41:04 -04:00
|
|
|
|
2020-09-18 18:34:07 -04:00
|
|
|
- name: Update versions repo
|
|
|
|
env:
|
2023-01-08 09:33:27 -05:00
|
|
|
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
|
2020-09-18 19:30:10 -04:00
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
2020-09-18 18:34:07 -04:00
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
2022-09-19 11:09:16 -04:00
|
|
|
run: ./update_version.sh
|
2023-01-08 09:33:27 -05:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2022-05-07 11:18:14 -04:00
|
|
|
|
2024-02-26 18:03:03 -05:00
|
|
|
- name: Upload assets
|
2024-02-26 18:44:20 -05:00
|
|
|
uses: actions/upload-artifact@v4
|
2024-02-26 18:03:03 -05:00
|
|
|
with:
|
|
|
|
name: bin-${{ matrix.vscode_arch }}
|
|
|
|
path: assets/
|
|
|
|
retention-days: 3
|
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true'
|
|
|
|
|
2022-05-07 11:18:14 -04:00
|
|
|
- name: Clean up keychain
|
2022-05-07 11:29:18 -04:00
|
|
|
if: always()
|
2022-05-07 11:18:14 -04:00
|
|
|
run: |
|
2022-05-07 11:29:18 -04:00
|
|
|
KEYCHAIN=$RUNNER_TEMP/build.keychain
|
|
|
|
|
|
|
|
if [ -f "$KEYCHAIN" ];
|
|
|
|
then
|
|
|
|
security delete-keychain $KEYCHAIN
|
|
|
|
fi
|