mirror of
https://github.com/element-hq/element-desktop.git
synced 2025-12-23 23:59:16 -05:00
215 lines
9.1 KiB
YAML
215 lines
9.1 KiB
YAML
# This workflow relies on actions/cache to store the hak dependency artifacts as they take a long time to build
|
|
# Due to this extra care must be taken to only ever run all build_* scripts against the same branch to ensure
|
|
# the correct cache scoping, and additional care must be taken to not run untrusted actions on the develop branch.
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
APPLE_ID:
|
|
required: false
|
|
APPLE_ID_PASSWORD:
|
|
required: false
|
|
APPLE_TEAM_ID:
|
|
required: false
|
|
APPLE_CSC_KEY_PASSWORD:
|
|
required: false
|
|
APPLE_CSC_LINK:
|
|
required: false
|
|
inputs:
|
|
ref:
|
|
type: string
|
|
required: false
|
|
description: "The git ref to checkout, defaults to the default branch"
|
|
version:
|
|
type: string
|
|
required: false
|
|
description: "Version string to override the one in package.json, used for non-release builds"
|
|
sign:
|
|
type: string
|
|
required: false
|
|
description: "Whether to sign & notarise the build, requires 'packages.element.io' environment"
|
|
base-url:
|
|
type: string
|
|
required: false
|
|
description: "The URL to which the output will be deployed."
|
|
blob_report:
|
|
type: boolean
|
|
required: false
|
|
description: "Whether to run the blob report"
|
|
prepare-artifact-name:
|
|
type: string
|
|
required: false
|
|
description: |
|
|
The name of the prepare artifact to use, defaults to 'webapp'.
|
|
The artifact must contain the following:
|
|
+ webapp.asar - the asar archive of the webapp to embed in the desktop app
|
|
+ electronVersion - the version of electron to use for cache keying
|
|
+ hakHash - the hash of the .hak directory to use for cache keying
|
|
+ variant.json - the variant configuration to use for the build
|
|
|
|
The artifact can also contain any additional files which will be applied as overrides to the checkout root before building,
|
|
for example icons in the `build/` directory to override the app icons.
|
|
default: "webapp"
|
|
test:
|
|
type: boolean
|
|
required: false
|
|
default: true
|
|
description: "Whether to run the test stage after building"
|
|
test-args:
|
|
type: string
|
|
required: false
|
|
description: "Additional arguments to pass to playwright"
|
|
artifact-prefix:
|
|
type: string
|
|
required: false
|
|
description: "An optional prefix to add to the artifact name, useful for distinguishing builds in private repos."
|
|
default: ""
|
|
targets:
|
|
type: string
|
|
required: false
|
|
description: "List of targets to build"
|
|
default: "dmg zip"
|
|
permissions: {} # No permissions required
|
|
jobs:
|
|
build:
|
|
name: Build macOS Universal
|
|
runs-on: macos-14 # M1
|
|
environment: ${{ inputs.sign && 'packages.element.io' || '' }}
|
|
steps:
|
|
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
|
|
with:
|
|
repository: element-hq/element-desktop
|
|
ref: ${{ inputs.ref }}
|
|
|
|
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
|
with:
|
|
name: ${{ inputs.prepare-artifact-name }}
|
|
|
|
- name: Cache .hak
|
|
id: cache
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
|
|
with:
|
|
key: ${{ runner.os }}-${{ hashFiles('hakHash', 'electronVersion') }}
|
|
path: |
|
|
./.hak
|
|
|
|
- name: Install Rust
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
rustup toolchain install stable --profile minimal --no-self-update
|
|
rustup default stable
|
|
rustup target add aarch64-apple-darwin
|
|
rustup target add x86_64-apple-darwin
|
|
|
|
# M1 macos-14 comes without Python preinstalled
|
|
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
|
|
with:
|
|
python-version: "3.13"
|
|
|
|
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
|
|
with:
|
|
node-version-file: .node-version
|
|
cache: "yarn"
|
|
|
|
- name: Install Deps
|
|
run: "yarn install --frozen-lockfile"
|
|
|
|
- name: Build Natives
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: yarn build:native:universal
|
|
|
|
# We split these because electron-builder gets upset if we set CSC_LINK even to an empty string
|
|
- name: "[Signed] Build App"
|
|
if: inputs.sign != ''
|
|
run: |
|
|
yarn build:universal --publish never -m ${{ inputs.targets }}
|
|
env:
|
|
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
|
CSC_KEY_PASSWORD: ${{ secrets.APPLE_CSC_KEY_PASSWORD }}
|
|
CSC_LINK: ${{ secrets.APPLE_CSC_LINK }}
|
|
VARIANT_PATH: variant.json
|
|
# Only set for Nightly builds
|
|
VERSION: ${{ inputs.version }}
|
|
|
|
- name: Check app was signed & notarised successfully
|
|
if: inputs.sign != ''
|
|
run: |
|
|
hdiutil attach dist/*.dmg -mountpoint /Volumes/Element
|
|
codesign -dv --verbose=4 /Volumes/Element/*.app
|
|
spctl -a -vvv -t install /Volumes/Element/*.app
|
|
hdiutil detach /Volumes/Element
|
|
|
|
- name: "[Unsigned] Build App"
|
|
if: inputs.sign == ''
|
|
run: |
|
|
yarn build:universal --publish never -m ${{ inputs.targets }}
|
|
env:
|
|
CSC_IDENTITY_AUTO_DISCOVERY: false
|
|
VARIANT_PATH: variant.json
|
|
|
|
- name: Generate releases.json
|
|
if: inputs.base-url
|
|
run: |
|
|
PKG_JSON_VERSION=$(cat package.json | jq -r .version)
|
|
LATEST=$(find dist -type f -iname "*-mac.zip" | xargs -0 -n1 -- basename)
|
|
# Encode spaces in the URL as Squirrel.Mac complains about bad JSON otherwise
|
|
URL="${{ inputs.base-url }}/update/macos/${LATEST// /%20}"
|
|
|
|
jq -n --arg version "${VERSION:-$PKG_JSON_VERSION}" --arg url "$URL" '
|
|
{
|
|
currentRelease: $version,
|
|
releases: [{
|
|
version: $version,
|
|
updateTo: {
|
|
version: $version,
|
|
url: $url,
|
|
},
|
|
}],
|
|
}
|
|
' > dist/releases.json
|
|
jq -n --arg url "$URL" '
|
|
{ url: $url }
|
|
' > dist/releases-legacy.json
|
|
env:
|
|
VERSION: ${{ inputs.version }}
|
|
|
|
# We exclude mac-universal as the unpacked app takes forever to upload and zip and dmg already contains it
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
|
with:
|
|
name: ${{ inputs.artifact-prefix }}macos
|
|
path: |
|
|
dist
|
|
!dist/mac-universal/**
|
|
retention-days: 1
|
|
|
|
- name: Assert zip is present
|
|
if: contains(inputs.targets, 'zip')
|
|
run: |
|
|
test -f ./dist/Element*-mac.zip
|
|
|
|
- name: Assert dmg is present
|
|
if: contains(inputs.targets, 'dmg')
|
|
run: |
|
|
test -f ./dist/Element*.dmg
|
|
|
|
test:
|
|
name: Test macOS Universal
|
|
needs: build
|
|
if: inputs.test && contains(inputs.targets, 'dmg')
|
|
uses: ./.github/workflows/build_test.yaml
|
|
with:
|
|
project: macos
|
|
artifact: ${{ inputs.artifact-prefix }}macos
|
|
runs-on: macos-14
|
|
executable: /Users/runner/Applications/Element*.app/Contents/MacOS/Element*
|
|
# We need to mount the DMG and copy the app to the Applications folder as a mounted DMG is
|
|
# read-only and thus would not allow us to override the fuses as is required for Playwright.
|
|
prepare_cmd: |
|
|
hdiutil attach ./dist/*.dmg -mountpoint /Volumes/Element &&
|
|
rsync -a /Volumes/Element/Element*.app ~/Applications/ &&
|
|
hdiutil detach /Volumes/Element
|
|
blob_report: ${{ inputs.blob_report }}
|
|
args: ${{ inputs.test-args }}
|