aa565a7281
build: update linux container (#44392) (cherry picked from commit a0f51d816e7b66e1f60943c672b53bbede94a34a)
86 lines
3 KiB
YAML
86 lines
3 KiB
YAML
name: Publish Linux
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
build-image-sha:
|
|
type: string
|
|
description: 'SHA for electron/build image'
|
|
default: 'bc2f48b2415a670de18d13605b1cf0eb5fdbaae1'
|
|
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: electron-arc-linux-amd64-32core
|
|
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_arm=True --custom-var=checkout_arm64=True'
|
|
steps:
|
|
- name: Checkout Electron
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
|
|
with:
|
|
path: src/electron
|
|
fetch-depth: 0
|
|
- name: Checkout & Sync & Save
|
|
uses: ./src/electron/.github/actions/checkout
|
|
|
|
publish-x64:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-linux
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: electron-arc-linux-amd64-32core
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","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
|
|
strip-binaries: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-linux
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: electron-arc-linux-amd64-32core
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","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
|
|
strip-binaries: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm64:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-linux
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: electron-arc-linux-amd64-32core
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","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
|
|
strip-binaries: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|