build #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "build" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- release | |
jobs: | |
publish-tauri: | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: "macos-latest" | |
args: "--target aarch64-apple-darwin" | |
- platform: "macos-13" | |
args: "--target x86_64-apple-darwin" | |
- platform: "ubuntu-22.04" | |
args: "" | |
- platform: "windows-latest" | |
args: "" | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-22.04' | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libwebkit2gtk-4.1-dev libunwind-dev libappindicator3-dev librsvg2-dev patchelf alsa-tools libasound2-dev libudev-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio | |
version: 1.0 | |
- name: install dependencies (macos only) | |
if: matrix.platform == 'macos-latest' | |
run: | | |
brew update | |
brew upgrade | |
brew install openssl@3 | |
# https://github.com/sfackler/rust-openssl/blob/master/.github/workflows/ci.yml#L94 | |
- name: Install vcpkg (Windows only) | |
run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append | |
if: matrix.platform == 'windows-latest' | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v7 | |
if: matrix.platform == 'windows-latest' | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Install OpenSSL (Windows only) | |
run: vcpkg install openssl:x64-windows-static-md | |
if: matrix.platform == 'windows-latest' | |
env: | |
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. | |
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin,wasm32-unknown-unknown' || 'wasm32-unknown-unknown' }} | |
# - uses: jetli/[email protected] | |
# with: | |
# # Optional version of trunk to install(eg. 'v0.19.1', 'latest') | |
# version: "latest" | |
# | |
- name: Install trunk | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: trunk | |
- name: Rust cache | |
uses: swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
cache-all-crates: true | |
workspaces: | | |
. -> target | |
lib/extensions-wasm -> target | |
- name: install extensions host wasm | |
run: | | |
mkdir -p target | |
chmod +x ./buildext.sh | |
./buildext.sh | |
shell: bash | |
- name: Current PWD | |
run: pwd | |
- name: Install tauri CLI | |
run: npm install -g @tauri-apps/cli@latest | |
- name: Run cargo check | |
run: | | |
cd src-tauri | |
cargo build --release ${{ matrix.args }} | |
ls ../target/ | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
with: | |
tagName: Moosync-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. | |
releaseName: "Moosync v__VERSION__" | |
releaseBody: "See the assets to download this version and install." | |
releaseDraft: true | |
prerelease: true | |
args: ${{ matrix.args }} | |
tauriScript: tauri | |
projectPath: "." |