- Use Forgejo checkout action with HTTPS (no SSH) - Update submodule URLs from SSH to HTTPS - All repos are now public, no authentication needed
90 lines
2.7 KiB
YAML
90 lines
2.7 KiB
YAML
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
name: Release Build
|
|
|
|
on:
|
|
push:
|
|
tags: ["v*", "weekly-*"]
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "Release tag (e.g., v1.0.0)"
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build-linux-appimage:
|
|
runs-on: app-builder
|
|
|
|
env:
|
|
CCACHE_DIR: /var/cache/ccache/kindred-create
|
|
CCACHE_COMPRESS: "true"
|
|
CCACHE_COMPRESSLEVEL: "6"
|
|
CCACHE_MAXSIZE: "4G"
|
|
CCACHE_SLOPPINESS: "include_file_ctime,include_file_mtime,pch_defines,time_macros"
|
|
BUILD_TAG: ${{ github.ref_name || inputs.tag }}
|
|
MAKE_INSTALLER: "true"
|
|
# Modern CPU flags for x86-64-v3 (AVX, AVX2, BMI1, BMI2, F16C, FMA, LZCNT, MOVBE, XSAVE)
|
|
CFLAGS: "-march=x86-64-v3 -O3"
|
|
CXXFLAGS: "-march=x86-64-v3 -O3"
|
|
|
|
steps:
|
|
- name: Install node if needed
|
|
shell: bash
|
|
run: |
|
|
if ! command -v node &> /dev/null; then
|
|
curl -fsSL https://nodejs.org/dist/v20.18.0/node-v20.18.0-linux-x64.tar.xz | sudo tar -xJ -C /usr/local --strip-components=1
|
|
fi
|
|
node --version
|
|
|
|
- name: Checkout repository
|
|
uses: https://code.forgejo.org/actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
|
|
- name: Install pixi if needed
|
|
shell: bash
|
|
run: |
|
|
if ! command -v pixi &> /dev/null; then
|
|
curl -fsSL https://pixi.sh/install.sh | bash
|
|
echo "$HOME/.pixi/bin" >> $GITHUB_PATH
|
|
export PATH="$HOME/.pixi/bin:$PATH"
|
|
fi
|
|
pixi --version
|
|
|
|
- name: Prepare ccache
|
|
shell: bash
|
|
run: |
|
|
sudo mkdir -p $CCACHE_DIR
|
|
sudo chown $(whoami):$(whoami) $CCACHE_DIR
|
|
pixi run ccache -z
|
|
|
|
- name: Write version info
|
|
run: python3 package/scripts/write_version_info.py ../freecad_version.txt
|
|
|
|
- name: Build release package (AppImage)
|
|
working-directory: package/rattler-build
|
|
run: |
|
|
pixi install
|
|
pixi run -e package create_bundle
|
|
|
|
- name: Show ccache statistics
|
|
run: pixi run ccache -s
|
|
|
|
- name: List built artifacts
|
|
shell: bash
|
|
run: |
|
|
echo "Built artifacts:"
|
|
ls -lah package/rattler-build/linux/*.AppImage* 2>/dev/null || echo "No AppImage files found"
|
|
ls -lah package/rattler-build/linux/*-SHA256.txt 2>/dev/null || echo "No SHA256 files found"
|
|
|
|
- name: Upload AppImage artifact
|
|
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
|
with:
|
|
name: kindred-create-appimage
|
|
path: |
|
|
package/rattler-build/linux/*.AppImage
|
|
package/rattler-build/linux/*-SHA256.txt
|
|
if-no-files-found: error
|