mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
87 lines
3 KiB
YAML
87 lines
3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- development
|
|
- __release-*
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: ${{ matrix.friendlyName }} ${{ matrix.arch }}
|
|
runs-on: ${{ matrix.os }}
|
|
permissions: read-all
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node: [16.17.1]
|
|
os: [macos-11, windows-2019]
|
|
arch: [x64, arm64]
|
|
include:
|
|
- os: macos-11
|
|
friendlyName: macOS
|
|
- os: windows-2019
|
|
friendlyName: Windows
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Use Node.js ${{ matrix.node }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: yarn
|
|
|
|
# This step can be removed as soon as official Windows arm64 builds are published:
|
|
# https://github.com/nodejs/build/issues/2450#issuecomment-705853342
|
|
- name: Get NodeJS node-gyp lib for Windows arm64
|
|
if: ${{ matrix.os == 'windows-2019' && matrix.arch == 'arm64' }}
|
|
run: .\script\download-nodejs-win-arm64.ps1 ${{ matrix.node }}
|
|
|
|
- name: Install and build dependencies
|
|
run: yarn
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
TARGET_ARCH: ${{ matrix.arch }}
|
|
- name: Validate Electron version
|
|
run: yarn run validate-electron-version
|
|
- name: Lint
|
|
run: yarn lint
|
|
- name: Validate changelog
|
|
run: yarn validate-changelog
|
|
- name: Ensure a clean working directory
|
|
run: git diff --name-status --exit-code
|
|
- name: Build production app
|
|
run: yarn build:prod
|
|
env:
|
|
DESKTOP_OAUTH_CLIENT_ID: ${{ secrets.DESKTOP_OAUTH_CLIENT_ID }}
|
|
DESKTOP_OAUTH_CLIENT_SECRET:
|
|
${{ secrets.DESKTOP_OAUTH_CLIENT_SECRET }}
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
|
APPLE_APPLICATION_CERT: ${{ secrets.APPLE_APPLICATION_CERT }}
|
|
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
TARGET_ARCH: ${{ matrix.arch }}
|
|
- name: Prepare testing environment
|
|
if: matrix.arch == 'x64'
|
|
run: yarn test:setup
|
|
- name: Run unit tests
|
|
if: matrix.arch == 'x64'
|
|
run: yarn test:unit
|
|
- name: Run script tests
|
|
if: matrix.arch == 'x64'
|
|
run: yarn test:script
|
|
- name: Publish production app
|
|
run: yarn run publish
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
WINDOWS_CERT_PFX: ${{ secrets.WINDOWS_CERT_PFX }}
|
|
WINDOWS_CERT_PASSWORD: ${{ secrets.WINDOWS_CERT_PASSWORD }}
|
|
DEPLOYMENT_SECRET: ${{ secrets.DEPLOYMENT_SECRET }}
|
|
AZURE_STORAGE_ACCOUNT: ${{ secrets.AZURE_STORAGE_ACCOUNT }}
|
|
AZURE_STORAGE_ACCESS_KEY: ${{ secrets.AZURE_STORAGE_ACCESS_KEY }}
|
|
AZURE_BLOB_CONTAINER: ${{ secrets.AZURE_BLOB_CONTAINER }}
|
|
AZURE_STORAGE_URL: ${{ secrets.AZURE_STORAGE_URL }}
|