78 lines
2.6 KiB
YAML
78 lines
2.6 KiB
YAML
name: Publish Linux
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
upload-to-storage:
|
|
description: 'Uploads to Azure storage'
|
|
required: false
|
|
default: '1'
|
|
type: string
|
|
run-linux-publish:
|
|
description: 'Run the publish jobs vs just the build jobs'
|
|
type: boolean
|
|
default: false
|
|
|
|
jobs:
|
|
checkout-linux:
|
|
runs-on: aks-linux-large
|
|
container:
|
|
image: ghcr.io/electron/build:latest
|
|
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:
|
|
gclient-extra-args: '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
|
|
|
|
publish-x64:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-linux
|
|
with:
|
|
build-runs-on: aks-linux-large
|
|
build-container: '{"image":"ghcr.io/electron/build:latest","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
|
target-platform: linux
|
|
target-arch: x64
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-linux
|
|
with:
|
|
build-runs-on: aks-linux-large
|
|
build-container: '{"image":"ghcr.io/electron/build:latest","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
|
target-platform: linux
|
|
target-arch: arm
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm64:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-linux
|
|
with:
|
|
build-runs-on: aks-linux-large
|
|
build-container: '{"image":"ghcr.io/electron/build:latest","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
|
target-platform: linux
|
|
target-arch: arm64
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|