2022-12-13 15:12:40 +01:00
|
|
|
# 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.
|
2022-11-11 16:15:21 +01:00
|
|
|
on:
|
2022-12-15 12:00:58 +01:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
2023-02-20 13:09:45 +01:00
|
|
|
version:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: "Version string to override the one in package.json, used for non-release builds"
|
2022-12-15 12:00:58 +01:00
|
|
|
sqlcipher:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
description: "How to link sqlcipher, one of 'system' | 'static'"
|
2022-11-11 16:15:21 +01:00
|
|
|
jobs:
|
2022-12-15 12:00:58 +01:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2023-03-30 15:22:58 +02:00
|
|
|
container:
|
|
|
|
image: ghcr.io/vector-im/element-desktop-dockerbuild:t3chguy-dockerbuild
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
2022-12-15 12:00:58 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: webapp
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
- name: Cache .hak
|
|
|
|
id: cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
key: ${{ runner.os }}-${{ hashFiles('hakDependencies.json', 'electronVersion') }}
|
|
|
|
path: |
|
|
|
|
./.hak
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2023-03-30 15:22:58 +02:00
|
|
|
env:
|
|
|
|
# Workaround for https://github.com/actions/setup-node/issues/317
|
|
|
|
FORCE_COLOR: 0
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
# Does not need branch matching as only analyses this layer
|
|
|
|
- name: Install Deps
|
|
|
|
run: "yarn install --pure-lockfile"
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
- name: Build Natives
|
|
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
|
|
run: "yarn build:native"
|
|
|
|
env:
|
|
|
|
SQLCIPHER_STATIC: ${{ inputs.sqlcipher == 'static' && '1' || '' }}
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2023-02-22 14:51:19 +01:00
|
|
|
- name: "[Nightly] Resolve version"
|
2023-02-20 13:09:45 +01:00
|
|
|
id: nightly
|
|
|
|
if: inputs.version != ''
|
|
|
|
run: |
|
|
|
|
echo "config-args=--nightly '${{ inputs.version }}'" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: Generate debian control file
|
|
|
|
run: |
|
|
|
|
cp element.io/${{ inputs.version && 'nightly' || 'release' }}/control.template debcontrol
|
|
|
|
INPUT_VERSION="${{ inputs.version }}"
|
|
|
|
VERSION=${INPUT_VERSION:-$(cat package.json | jq -r .version)}
|
|
|
|
echo "Version: $VERSION" >> debcontrol
|
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
- name: Build App
|
2023-02-20 13:09:45 +01:00
|
|
|
run: |
|
2023-03-30 15:22:58 +02:00
|
|
|
npx ts-node scripts/generate-builder-config.ts ${{ steps.nightly.outputs.config-args }} --deb-custom-control=debcontrol
|
2023-02-20 13:09:45 +01:00
|
|
|
yarn build --publish never -l --config electron-builder.json
|
2022-11-11 16:15:21 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-03-02 17:54:57 +01:00
|
|
|
name: linux-sqlcipher-${{ inputs.sqlcipher }}
|
|
|
|
path: dist
|
2022-12-15 12:00:58 +01:00
|
|
|
retention-days: 1
|