vscodium/.github/workflows/macos.yml

132 lines
4.1 KiB
YAML
Raw Normal View History

name: macos_build
2020-09-18 15:41:04 +03:00
on:
workflow_dispatch:
2020-09-21 01:28:07 +03:00
schedule:
- cron: '0 0 * * *'
2020-09-18 15:41:04 +03:00
push:
pull_request:
branches: [ master ]
jobs:
build:
2021-09-18 11:12:10 +03:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- vscode_arch: x64
os: macOS-10.15
2021-09-20 10:25:00 +03:00
# - vscode_arch: arm64
# os: macOS-11
2021-09-18 11:12:10 +03:00
2020-09-18 15:41:04 +03:00
env:
OS_NAME: "osx"
2021-09-18 11:12:10 +03:00
VSCODE_ARCH: ${{ matrix.vscode_arch }}
2020-09-18 15:41:04 +03:00
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v1
2020-09-18 15:41:04 +03:00
with:
node-version: 14
2020-09-18 15:41:04 +03:00
2021-03-10 18:48:45 +03:00
- name: Check PR or cron
run: |
. check_cron_or_pr.sh
2020-09-18 15:41:04 +03:00
- name: Clone VSCode repo
run: |
. get_repo.sh
- name: Check existing VSCodium tags/releases
2020-09-18 16:01:29 +03:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-09-18 15:41:04 +03:00
run: |
. check_tags.sh
2021-03-10 18:48:45 +03:00
if: env.SHOULD_DEPLOY == 'yes'
2021-03-10 20:58:36 +03:00
- name: Compute cache key
id: yarnCacheKey
run: echo "::set-output name=value::$(node build/azure-pipelines/computeYarnCacheKey.js)"
2021-03-10 21:24:52 +03:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 20:58:36 +03:00
- name: Get yarn cache directory path
id: yarnCacheDirPath
run: echo "::set-output name=dir::$(yarn cache dir)"
2021-03-10 21:24:52 +03:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 20:58:36 +03:00
- name: Cache yarn directory
uses: actions/cache@v2
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
2021-03-10 21:38:28 +03: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 20:58:36 +03:00
if: env.SHOULD_BUILD == 'yes'
2020-09-18 15:41:04 +03:00
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-09-18 15:41:04 +03:00
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2020-09-18 15:41:04 +03:00
- name: Sign binary
env:
CERTIFICATE_OSX_P12: ${{ secrets.CERTIFICATE_OSX_P12 }}
CERTIFICATE_OSX_PASSWORD: ${{ secrets.CERTIFICATE_OSX_PASSWORD }}
CERTIFICATE_OSX_ID: ${{ secrets.CERTIFICATE_OSX_ID }}
2021-03-10 18:48:45 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
run: |
if [ -d "VSCode-darwin-${VSCODE_ARCH}" ]; then # just in case the build failed
2020-12-15 01:53:43 +03:00
cd "VSCode-darwin-${VSCODE_ARCH}"
export CERTIFICATE_P12=VSCodium.p12
echo $CERTIFICATE_OSX_P12 | base64 --decode > $CERTIFICATE_P12
export KEYCHAIN=build.keychain
security create-keychain -p mysecretpassword $KEYCHAIN
security default-keychain -s $KEYCHAIN
security unlock-keychain -p mysecretpassword $KEYCHAIN
security import $CERTIFICATE_P12 -k $KEYCHAIN -P $CERTIFICATE_OSX_PASSWORD -T /usr/bin/codesign
security set-key-partition-list -S apple-tool:,apple: -s -k mysecretpassword $KEYCHAIN
codesign --deep --force --verbose --sign "$CERTIFICATE_OSX_ID" VSCodium.app
fi
2020-09-18 15:41:04 +03:00
- name: Zip release
run: |
cd "VSCode-darwin-${VSCODE_ARCH}"
zip -r -X -y ../VSCodium-darwin-${VSCODE_ARCH}-${MS_TAG}.zip ./*.app
2021-03-10 18:48:45 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2020-09-19 00:54:45 +03:00
- name: DMG the release
run: |
pushd "VSCode-darwin-${VSCODE_ARCH}"
npx create-dmg VSCodium.app ..
mv "../VSCodium ${MS_TAG}.dmg" "../VSCodium.${VSCODE_ARCH}.${MS_TAG}.dmg"
popd
2021-03-10 18:48:45 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Generate shasums
run: ./sum.sh
2021-03-10 18:48:45 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2020-09-18 15:41:04 +03:00
- name: Release
uses: softprops/action-gh-release@v1
2021-03-10 18:48:45 +03:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2020-09-18 15:41:04 +03:00
with:
tag_name: ${{ env.MS_TAG }}
2020-09-18 15:41:04 +03:00
files: |
./*.zip
./*.dmg
./*.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update versions repo
2021-03-10 18:48:45 +03: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 }}