mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-19 07:54:59 +01:00
125 lines
5.0 KiB
YAML
125 lines
5.0 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:
|
|
inputs:
|
|
config:
|
|
type: string
|
|
required: true
|
|
description: "The config directory to use"
|
|
version:
|
|
type: string
|
|
required: false
|
|
description: "Version string to override the one in package.json, used for non-release builds"
|
|
sqlcipher:
|
|
type: string
|
|
required: true
|
|
description: "How to link sqlcipher, one of 'system' | 'static'"
|
|
deploy-mode:
|
|
type: boolean
|
|
required: false
|
|
description: "Whether to arrange artifacts in the arrangement needed for deployment, skipping unrelated ones"
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/vector-im/element-desktop-dockerbuild:t3chguy-dockerbuild
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/download-artifact@v3
|
|
with:
|
|
name: webapp
|
|
|
|
- name: Cache .hak
|
|
id: cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
key: ${{ runner.os }}-${{ hashFiles('hakDependencies.json', 'electronVersion') }}
|
|
path: |
|
|
./.hak
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
cache: "yarn"
|
|
env:
|
|
# Workaround for https://github.com/actions/setup-node/issues/317
|
|
FORCE_COLOR: 0
|
|
|
|
# Does not need branch matching as only analyses this layer
|
|
- name: Install Deps
|
|
run: "yarn install --pure-lockfile"
|
|
|
|
- name: Build Natives
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: "yarn build:native"
|
|
env:
|
|
SQLCIPHER_STATIC: ${{ inputs.sqlcipher == 'static' && '1' || '' }}
|
|
|
|
- name: "[Nightly] Resolve version"
|
|
id: nightly
|
|
if: inputs.version != ''
|
|
run: |
|
|
echo "config-args=--nightly '${{ inputs.version }}'" >> $GITHUB_OUTPUT
|
|
|
|
- name: Generate debian files and arguments
|
|
id: debian
|
|
run: |
|
|
if [ -f changelog.Debian ]; then
|
|
echo "config-args=--deb-changelog changelog.Debian" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
cp "$DIR/control.template" debcontrol
|
|
VERSION=${INPUT_VERSION:-$(cat package.json | jq -r .version)}
|
|
echo "Version: $VERSION" >> debcontrol
|
|
env:
|
|
DIR: ${{ inputs.config }}
|
|
INPUT_VERSION: ${{ inputs.version }}
|
|
|
|
- name: Build App
|
|
run: |
|
|
npx ts-node scripts/generate-builder-config.ts \
|
|
${{ steps.nightly.outputs.config-args }} \
|
|
${{ steps.debian.outputs.config-args }} \
|
|
--deb-custom-control=debcontrol
|
|
yarn build --publish never -l --config electron-builder.json
|
|
|
|
- name: Stash deb package
|
|
if: inputs.deploy-mode
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: linux-sqlcipher-${{ inputs.sqlcipher }}-deb
|
|
path: dist/*.deb
|
|
retention-days: 1
|
|
|
|
- name: Prepare artifacts for deployment
|
|
if: inputs.deploy-mode
|
|
run: |
|
|
mv dist _dist
|
|
mkdir -p "dist/install/linux/glibc-x86-64/"
|
|
mv _dist/*.tar.gz "dist/install/linux/glibc-x86-64"
|
|
|
|
# We don't wish to store the tarball for every nightly ever, so we only keep the latest
|
|
- name: "[Nightly] Strip version from tarball"
|
|
if: inputs.deploy-mode && inputs.version != ''
|
|
run: |
|
|
mv dist/install/linux/glibc-x86-64/*.tar.gz "dist/install/linux/glibc-x86-64/element-desktop-nightly.tar.gz"
|
|
|
|
- name: "[Release] Prepare release latest symlink"
|
|
if: inputs.deploy-mode && inputs.version == ''
|
|
shell: bash
|
|
run: |
|
|
ln -s "$(find . -type f -iname "*.tar.gz" | xargs -0 -n1 -- basename)" "element-desktop.tar.gz"
|
|
working-directory: "dist/install/linux/glibc-x86-64"
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ${{ inputs.deploy-mode && 'packages.element.io' || format('linux-sqlcipher-{0}', inputs.sqlcipher) }}
|
|
path: dist
|
|
retention-days: 1
|