mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-25 15:59:30 +01:00
This commit removes the CI step that installs LLVM on Windows because: 1. It was constantly failing when I worked on [1] ```text Failed in attempting to update the source: winget The `msstore` source requires that you view the following agreements before using. Terms of Transaction: https://aka.ms/microsoft-store-terms-of-transaction The source requires the current machine's 2-letter geographic region to be sent to the backend service to function properly (ex. "US"). Failed when searching source: winget An unexpected error occurred while executing the command: 0x8a15000f : Data required by the source is missing No packages were found among the working sources. ``` 2. Actually, we don't need to install it since the Windows Github action image already includes it. See [2] [1]: https://github.com/infinilabs/coco-app/pull/946 [2]: https://github.com/actions/runner-images/blob/main/images/windows/Windows2025-Readme.md#language-and-runtime
174 lines
5.6 KiB
YAML
174 lines
5.6 KiB
YAML
name: "publish"
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
create-release:
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
APP_VERSION: ${{ steps.get-version.outputs.APP_VERSION }}
|
|
RELEASE_BODY: ${{ steps.get-changelog.outputs.RELEASE_BODY }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set output
|
|
id: vars
|
|
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Get build version
|
|
shell: bash
|
|
id: get-version
|
|
run: |
|
|
PACKAGE_VERSION=$(jq -r '.version' package.json)
|
|
CARGO_VERSION=$(grep -m 1 '^version =' src-tauri/Cargo.toml | sed -E 's/.*"([^"]+)".*/\1/')
|
|
if [ "$PACKAGE_VERSION" != "$CARGO_VERSION" ]; then
|
|
echo "::error::Version mismatch!"
|
|
else
|
|
echo "Version match: $PACKAGE_VERSION"
|
|
fi
|
|
echo "APP_VERSION=$PACKAGE_VERSION" >> $GITHUB_OUTPUT
|
|
|
|
- name: Generate changelog
|
|
id: get-changelog
|
|
run: |
|
|
CHANGELOG_BODY=$(npx changelogithub --draft --name ${{ steps.vars.outputs.tag }})
|
|
echo "RELEASE_BODY<<EOF" >> $GITHUB_OUTPUT
|
|
echo "$CHANGELOG_BODY" >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
build-app:
|
|
needs: create-release
|
|
permissions:
|
|
contents: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- platform: "macos-latest"
|
|
target: "aarch64-apple-darwin"
|
|
- platform: "macos-latest"
|
|
target: "x86_64-apple-darwin"
|
|
|
|
- platform: "windows-latest"
|
|
target: "x86_64-pc-windows-msvc"
|
|
- platform: "windows-latest"
|
|
target: "i686-pc-windows-msvc"
|
|
- platform: "windows-latest"
|
|
target: "aarch64-pc-windows-msvc"
|
|
|
|
- platform: "ubuntu-22.04"
|
|
target: "x86_64-unknown-linux-gnu"
|
|
- platform: "ubuntu-22.04-arm"
|
|
target: "aarch64-unknown-linux-gnu"
|
|
env:
|
|
APP_VERSION: ${{ needs.create-release.outputs.APP_VERSION }}
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Checkout dependency repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: 'infinilabs/pizza'
|
|
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
submodules: recursive
|
|
ref: main
|
|
path: pizza
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
- uses: pnpm/action-setup@v3
|
|
with:
|
|
version: latest
|
|
|
|
- name: Install dependencies (ubuntu only)
|
|
if: startsWith(matrix.platform, 'ubuntu-22.04')
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils libtracker-sparql-3.0-dev
|
|
|
|
|
|
# On Windows, we need to generate bindings for 'searchapi.h' using bindgen.
|
|
# And bindgen relies on 'libclang'
|
|
# https://rust-lang.github.io/rust-bindgen/requirements.html#windows
|
|
#
|
|
# We don't need to install it because it is already included in GitHub
|
|
# Action runner image:
|
|
# https://github.com/actions/runner-images/blob/main/images/windows/Windows2025-Readme.md#language-and-runtime
|
|
|
|
|
|
- name: Add Rust build target
|
|
working-directory: src-tauri
|
|
shell: bash
|
|
run: |
|
|
rustup target add ${{ matrix.target }} || true
|
|
|
|
- name: Add pizza engine as a dependency
|
|
working-directory: src-tauri
|
|
shell: bash
|
|
run: |
|
|
BUILD_ARGS="--target ${{ matrix.target }}"
|
|
if [[ "${{matrix.target }}" != "i686-pc-windows-msvc" ]]; then
|
|
echo "Adding pizza engine as a dependency for ${{matrix.platform }}-${{matrix.target }}"
|
|
( cargo add --path ../pizza/lib/engine --features query_string_parser,persistence )
|
|
BUILD_ARGS+=" --features use_pizza_engine"
|
|
else
|
|
echo "Skipping pizza engine dependency for ${{matrix.platform }}-${{matrix.target }}"
|
|
fi
|
|
echo "BUILD_ARGS=${BUILD_ARGS}" >> $GITHUB_ENV
|
|
|
|
- name: Rust cache
|
|
uses: swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: src-tauri/target
|
|
|
|
- name: Sync node version and setup cache
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: pnpm
|
|
|
|
- name: Install app dependencies and build web
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build the coco at ${{ matrix.platform}} for ${{ matrix.target }} @ ${{ env.APP_VERSION }}
|
|
uses: tauri-apps/tauri-action@v0
|
|
env:
|
|
CI: false
|
|
PLATFORM: ${{ matrix.platform }}
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ""
|
|
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
|
APPLE_CERTIFICATE_PASSWORD: ""
|
|
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
|
|
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
|
with:
|
|
tagName: ${{ github.ref_name }}
|
|
releaseName: Coco ${{ env.APP_VERSION }}
|
|
releaseBody: "${{ needs.create-release.outputs.RELEASE_BODY }}"
|
|
releaseDraft: true
|
|
prerelease: false
|
|
args: ${{ env.BUILD_ARGS }}
|