mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* wayland test chromium patch * ci: add wayland test job and helpers * use weston directly instead of wlheadless-run * roll build image to eac3529 * fixed exec command * Update .github/workflows/pipeline-segment-electron-test.yml Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com> * Update .github/workflows/pipeline-segment-electron-test.yml Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com> * chore: fixup shard case statement * reverted leftover patch line --------- Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com>
110 lines
3.2 KiB
YAML
110 lines
3.2 KiB
YAML
name: Publish Windows
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
build-image-sha:
|
|
type: string
|
|
description: 'SHA for electron/build image'
|
|
default: 'eac3529546ea8f3aa356d31e345715eef342233b'
|
|
required: true
|
|
upload-to-storage:
|
|
description: 'Uploads to Azure storage'
|
|
required: false
|
|
default: '1'
|
|
type: string
|
|
run-windows-publish:
|
|
description: 'Run the publish jobs vs just the build jobs'
|
|
type: boolean
|
|
default: false
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
checkout-windows:
|
|
if: github.repository == 'electron/electron'
|
|
runs-on: electron-arc-centralus-linux-amd64-32core
|
|
permissions:
|
|
contents: read
|
|
container:
|
|
image: ghcr.io/electron/build:${{ inputs.build-image-sha }}
|
|
options: --user root --device /dev/fuse --cap-add SYS_ADMIN
|
|
volumes:
|
|
- /mnt/win-cache:/mnt/win-cache
|
|
- /var/run/sas:/var/run/sas
|
|
env:
|
|
CHROMIUM_GIT_COOKIE_WINDOWS_STRING: ${{ secrets.CHROMIUM_GIT_COOKIE_WINDOWS_STRING }}
|
|
GCLIENT_EXTRA_ARGS: '--custom-var=checkout_win=True'
|
|
TARGET_OS: 'win'
|
|
ELECTRON_DEPOT_TOOLS_WIN_TOOLCHAIN: '1'
|
|
outputs:
|
|
build-image-sha: ${{ inputs.build-image-sha }}
|
|
steps:
|
|
- name: Checkout Electron
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
with:
|
|
path: src/electron
|
|
fetch-depth: 0
|
|
- name: Checkout & Sync & Save
|
|
uses: ./src/electron/.github/actions/checkout
|
|
with:
|
|
generate-sas-token: 'true'
|
|
target-platform: win
|
|
|
|
publish-x64-win:
|
|
uses: ./.github/workflows/pipeline-segment-electron-publish.yml
|
|
permissions:
|
|
artifact-metadata: write
|
|
attestations: write
|
|
contents: read
|
|
id-token: write
|
|
needs: checkout-windows
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: electron-arc-centralus-windows-amd64-16core
|
|
target-platform: win
|
|
target-arch: x64
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm64-win:
|
|
uses: ./.github/workflows/pipeline-segment-electron-publish.yml
|
|
permissions:
|
|
artifact-metadata: write
|
|
attestations: write
|
|
contents: read
|
|
id-token: write
|
|
needs: checkout-windows
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: electron-arc-centralus-windows-amd64-16core
|
|
target-platform: win
|
|
target-arch: arm64
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-x86-win:
|
|
uses: ./.github/workflows/pipeline-segment-electron-publish.yml
|
|
permissions:
|
|
artifact-metadata: write
|
|
attestations: write
|
|
contents: read
|
|
id-token: write
|
|
needs: checkout-windows
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: electron-arc-centralus-windows-amd64-16core
|
|
target-platform: win
|
|
target-arch: x86
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|