mirror of https://github.com/Leinnan/rpack.git
77 lines
2.3 KiB
YAML
77 lines
2.3 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- uses: actions/cache@v4
|
|
continue-on-error: false
|
|
with:
|
|
path: |
|
|
~/.cargo/bin/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
target/
|
|
key: ${{ runner.os }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
restore-keys: ${{ runner.os }}-build-
|
|
- uses: extractions/setup-just@v2
|
|
- uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-bundle
|
|
- name: Mac build
|
|
if: startsWith(runner.os, 'macos')
|
|
working-directory: crates/rpack_egui
|
|
run: just create_mac_installer
|
|
- name: Mac artifacts
|
|
if: startsWith(runner.os, 'macos')
|
|
run: |
|
|
mkdir artifacts
|
|
mv crates/rpack_egui/RpackInstaller.pkg artifacts/RpackInstaller.pkg
|
|
- name: Regular installer
|
|
if: ${{ startsWith(runner.os, 'ubuntu') }}
|
|
working-directory: crates/rpack_egui
|
|
run: |
|
|
just create_installer
|
|
- name: Windows build
|
|
if: ${{ startsWith(runner.os, 'windows') }}
|
|
working-directory: crates/rpack_egui
|
|
run: |
|
|
cargo build --release
|
|
- name: Copy artifacts
|
|
if: ${{ startsWith(runner.os, 'windows') }}
|
|
run: |
|
|
mkdir artifacts
|
|
cp target/release/rpack_egui.exe artifacts/rpack_egui.exe
|
|
- name: Copy artifacts
|
|
if: ${{ startsWith(runner.os, 'ubuntu') }}
|
|
run: |
|
|
mkdir artifacts
|
|
cp target/release/bundle/deb/rpack_egui*.deb artifacts/
|
|
cp target/release/bundle/appimage/rpack_egui*.AppImage artifacts/
|
|
- uses: actions/upload-artifact@v4
|
|
if: startsWith(runner.os, 'macos')
|
|
with:
|
|
name: macos-installer
|
|
path: artifacts
|
|
- name: Copy artifacts
|
|
if: ${{ startsWith(runner.os, 'ubuntu') }}
|
|
run: |
|
|
mkdir artifacts
|
|
cp target/release/rpack_egui artifacts/rpack_egui
|
|
- uses: actions/upload-artifact@v4
|
|
if: ${{ !startsWith(runner.os, 'macos') }}
|
|
with:
|
|
name: ${{ runner.os }}
|
|
path: artifacts
|