c2c3673e8a
* build: use runuser for electron spec runner * chown * run tests in priv * fixed * build: setup testing on arm for GHA * no build-tools for test * start xvfb for the right user * no more gn-build-type * debug env * ue xvfb-run * use 8 core for node tests * build: do test sharding on linux * fix: disable hung node test * build: index splits are hard * build: use --init to reap children * allow write junit * use custom xvfb wrapper * pipefail * dont kill xvfb, its already dead --------- Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
156 lines
5.1 KiB
YAML
156 lines
5.1 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
build-image-sha:
|
|
type: string
|
|
description: 'SHA for electron/build image'
|
|
default: 'cf814a4d2501e8e843caea071a6b70a48e78b855'
|
|
required: true
|
|
skip-macos:
|
|
type: boolean
|
|
description: 'Skip macOS builds'
|
|
default: false
|
|
required: false
|
|
skip-linux:
|
|
type: boolean
|
|
description: 'Skip Linux builds'
|
|
default: false
|
|
required: false
|
|
skip-lint:
|
|
type: boolean
|
|
description: 'Skip lint check'
|
|
default: false
|
|
required: false
|
|
# push:
|
|
# pull_request:
|
|
|
|
jobs:
|
|
# Lint Jobs
|
|
lint:
|
|
if: ${{ !inputs.skip-lint }}
|
|
uses: ./.github/workflows/pipeline-electron-lint.yml
|
|
with:
|
|
container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root"}'
|
|
secrets: inherit
|
|
|
|
# Checkout Jobs
|
|
checkout-macos:
|
|
if: ${{ !inputs.skip-macos }}
|
|
runs-on: aks-linux-large
|
|
container:
|
|
image: ghcr.io/electron/build:${{ inputs.build-image-sha }}
|
|
options: --user root
|
|
volumes:
|
|
- /mnt/cross-instance-cache:/mnt/cross-instance-cache
|
|
- /var/run/sas:/var/run/sas
|
|
env:
|
|
GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'
|
|
steps:
|
|
- name: Checkout Electron
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
|
with:
|
|
path: src/electron
|
|
fetch-depth: 0
|
|
- name: Checkout & Sync & Save
|
|
uses: ./src/electron/.github/actions/checkout
|
|
with:
|
|
generate-sas-token: 'true'
|
|
|
|
checkout-linux:
|
|
if: ${{ !inputs.skip-linux }}
|
|
runs-on: aks-linux-large
|
|
container:
|
|
image: ghcr.io/electron/build:${{ inputs.build-image-sha }}
|
|
options: --user root
|
|
volumes:
|
|
- /mnt/cross-instance-cache:/mnt/cross-instance-cache
|
|
- /var/run/sas:/var/run/sas
|
|
env:
|
|
GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'
|
|
steps:
|
|
- name: Checkout Electron
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
|
with:
|
|
path: src/electron
|
|
fetch-depth: 0
|
|
- name: Checkout & Sync & Save
|
|
uses: ./src/electron/.github/actions/checkout
|
|
|
|
# Build Jobs - These cascade into testing jobs
|
|
macos-x64:
|
|
uses: ./.github/workflows/pipeline-electron-build-and-test.yml
|
|
needs: checkout-macos
|
|
with:
|
|
build-runs-on: macos-14-xlarge
|
|
test-runs-on: macos-14-xlarge
|
|
target-platform: macos
|
|
target-arch: x64
|
|
is-release: false
|
|
gn-build-type: testing
|
|
generate-symbols: false
|
|
upload-to-storage: '0'
|
|
secrets: inherit
|
|
|
|
macos-arm64:
|
|
uses: ./.github/workflows/pipeline-electron-build-and-test.yml
|
|
needs: checkout-macos
|
|
with:
|
|
build-runs-on: macos-14-xlarge
|
|
test-runs-on: macos-14-xlarge
|
|
target-platform: macos
|
|
target-arch: arm64
|
|
is-release: false
|
|
gn-build-type: testing
|
|
generate-symbols: false
|
|
upload-to-storage: '0'
|
|
secrets: inherit
|
|
|
|
linux-x64:
|
|
uses: ./.github/workflows/pipeline-electron-build-and-test-and-nan.yml
|
|
needs: checkout-linux
|
|
with:
|
|
build-runs-on: aks-linux-large
|
|
test-runs-on: aks-linux-medium
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
|
test-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root --privileged --init"}'
|
|
target-platform: linux
|
|
target-arch: x64
|
|
is-release: false
|
|
gn-build-type: testing
|
|
generate-symbols: false
|
|
upload-to-storage: '0'
|
|
secrets: inherit
|
|
|
|
linux-arm:
|
|
uses: ./.github/workflows/pipeline-electron-build-and-test.yml
|
|
needs: checkout-linux
|
|
with:
|
|
build-runs-on: aks-linux-large
|
|
test-runs-on: aks-linux-arm-medium
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
|
test-container: '{"image":"ghcr.io/electron/test:arm32v7-${{ inputs.build-image-sha }}","options":"--user root --privileged --init"}'
|
|
target-platform: linux
|
|
target-arch: arm
|
|
is-release: false
|
|
gn-build-type: testing
|
|
generate-symbols: false
|
|
upload-to-storage: '0'
|
|
secrets: inherit
|
|
|
|
linux-arm64:
|
|
uses: ./.github/workflows/pipeline-electron-build-and-test.yml
|
|
needs: checkout-linux
|
|
with:
|
|
build-runs-on: aks-linux-large
|
|
test-runs-on: aks-linux-arm-medium
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
|
test-container: '{"image":"ghcr.io/electron/test:arm64v8-${{ inputs.build-image-sha }}","options":"--user root --privileged --init"}'
|
|
target-platform: linux
|
|
target-arch: arm64
|
|
is-release: false
|
|
gn-build-type: testing
|
|
generate-symbols: false
|
|
upload-to-storage: '0'
|
|
secrets: inherit
|