2024-06-10 19:39:34 +00:00
|
|
|
name: Publish Linux
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
2024-06-13 21:35:47 +00:00
|
|
|
build-image-sha:
|
|
|
|
type: string
|
|
|
|
description: 'SHA for electron/build image'
|
2024-10-25 13:27:51 +00:00
|
|
|
default: 'bc2f48b2415a670de18d13605b1cf0eb5fdbaae1'
|
2024-06-10 19:39:34 +00:00
|
|
|
upload-to-storage:
|
|
|
|
description: 'Uploads to Azure storage'
|
|
|
|
required: false
|
|
|
|
default: '1'
|
|
|
|
type: string
|
2024-06-13 04:13:17 +00:00
|
|
|
run-linux-publish:
|
2024-06-10 19:39:34 +00:00
|
|
|
description: 'Run the publish jobs vs just the build jobs'
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
|
|
|
|
jobs:
|
2024-06-13 21:02:38 +00:00
|
|
|
checkout-linux:
|
2024-07-13 05:22:49 +00:00
|
|
|
runs-on: electron-arc-linux-amd64-32core
|
2024-06-13 21:02:38 +00:00
|
|
|
container:
|
2024-06-13 21:35:47 +00:00
|
|
|
image: ghcr.io/electron/build:${{ inputs.build-image-sha }}
|
2024-06-13 21:02:38 +00:00
|
|
|
options: --user root
|
|
|
|
volumes:
|
|
|
|
- /mnt/cross-instance-cache:/mnt/cross-instance-cache
|
|
|
|
- /var/run/sas:/var/run/sas
|
|
|
|
env:
|
2024-06-19 04:54:20 +00:00
|
|
|
GCLIENT_EXTRA_ARGS: '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
|
2024-06-13 21:02:38 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout Electron
|
2024-10-11 17:28:45 +00:00
|
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
|
2024-06-13 21:02:38 +00:00
|
|
|
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:
|
2024-06-14 16:14:38 +00:00
|
|
|
environment: production-release
|
2024-07-13 05:22:49 +00:00
|
|
|
build-runs-on: electron-arc-linux-amd64-32core
|
2024-06-13 21:35:47 +00:00
|
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
2024-06-13 21:02:38 +00:00
|
|
|
target-platform: linux
|
|
|
|
target-arch: x64
|
|
|
|
is-release: true
|
|
|
|
gn-build-type: release
|
|
|
|
generate-symbols: true
|
2024-06-27 00:41:36 +00:00
|
|
|
strip-binaries: true
|
2024-06-13 21:02:38 +00:00
|
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
publish-arm:
|
|
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
|
|
needs: checkout-linux
|
|
|
|
with:
|
2024-06-14 16:14:38 +00:00
|
|
|
environment: production-release
|
2024-07-13 05:22:49 +00:00
|
|
|
build-runs-on: electron-arc-linux-amd64-32core
|
2024-06-13 21:35:47 +00:00
|
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
2024-06-13 21:02:38 +00:00
|
|
|
target-platform: linux
|
|
|
|
target-arch: arm
|
|
|
|
is-release: true
|
|
|
|
gn-build-type: release
|
|
|
|
generate-symbols: true
|
2024-06-27 00:41:36 +00:00
|
|
|
strip-binaries: true
|
2024-06-13 21:02:38 +00:00
|
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
publish-arm64:
|
|
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
|
|
needs: checkout-linux
|
2024-06-10 19:39:34 +00:00
|
|
|
with:
|
2024-06-14 16:14:38 +00:00
|
|
|
environment: production-release
|
2024-07-13 05:22:49 +00:00
|
|
|
build-runs-on: electron-arc-linux-amd64-32core
|
2024-06-13 21:35:47 +00:00
|
|
|
build-container: '{"image":"ghcr.io/electron/build:${{ inputs.build-image-sha }}","options":"--user root","volumes":["/mnt/cross-instance-cache:/mnt/cross-instance-cache"]}'
|
2024-06-13 21:02:38 +00:00
|
|
|
target-platform: linux
|
|
|
|
target-arch: arm64
|
2024-06-10 19:39:34 +00:00
|
|
|
is-release: true
|
|
|
|
gn-build-type: release
|
|
|
|
generate-symbols: true
|
2024-06-27 00:41:36 +00:00
|
|
|
strip-binaries: true
|
2024-06-10 19:39:34 +00:00
|
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
|
|
secrets: inherit
|