Add hexpat #18
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: Continuous Integration bytesto4t | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
toolchain: [1.77.2, stable, beta, nightly] | |
bun-version: [latest, canary] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
- name: Build Rust project | |
run: cargo build --manifest-path bytesto4t/src-tauri/Cargo.toml | |
# https://bun.sh/guides/runtime/cicd | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: ${{ matrix.bun-version }} | |
- name: Install Tauri CLI | |
run: bun install -g @tauri-apps/cli | |
- name: Install dependencies | |
run: bun install --cwd bytesto4t | |
- name: Build Svelte app | |
run: bun run build --cwd bytesto4t | |
- name: Build Tauri app | |
run: bun run tauri build --cwd bytesto4t |