feat: attempt to implement v2 tauri app #20
Workflow file for this run
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: Cargo Lint & Test | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: '*' | |
workflow_dispatch: # <- Setting to allow manual execution by button. | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
strategy: | |
matrix: | |
platform: [windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Rust cache | |
uses: Swatinem/[email protected] | |
with: | |
prefix-key: cargo-debug-${{ matrix.platform }} | |
# NOTE: It is not necessary, but for some reason it makes an error if there is no gui dependency package. | |
- name: Install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev | |
- name: Check format | |
run: cargo fmt --all -- --check | |
- name: Lint Check | |
run: cargo clippy --workspace -- -D warnings | |
test: | |
strategy: | |
matrix: | |
platform: [windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Rust cache | |
uses: Swatinem/[email protected] | |
with: | |
prefix-key: cargo-debug-${{ matrix.platform }} | |
# https://nexte.st/docs/installation/pre-built-binaries/#using-nextest-in-github-actions | |
- name: Install nextest(Parallel Test Execution CLI) | |
uses: taiki-e/install-action@nextest | |
- name: Install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev | |
- name: Test(Rust) | |
run: cargo nextest run --workspace | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
# platform: [macos-latest, ubuntu-latest, windows-latest] | |
platform: [windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev | |
- uses: actions/[email protected] | |
- name: Rust cache | |
uses: Swatinem/[email protected] | |
with: | |
prefix-key: cargo-release-${{ matrix.platform }} | |
- name: Sync node version | |
uses: actions/[email protected] | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- name: Node.js cache | |
uses: actions/[email protected] | |
with: | |
path: ${{ github.workspace }}/gui/frontend/.next/cache | |
# Generate a new cache whenever packages or source files change. | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('dar2oar_gui/frontend/src/**/*.[jt]s', 'dar2oar_gui/frontend/src/**/*.[jt]sx') }} | |
# If source files changed but packages didn't, rebuild from a prior cache. | |
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- | |
- name: Install frontend dependencies | |
run: npm ci | |
- name: Test(Node.js) | |
run: npm test | |
- name: Build Test(GUI) | |
run: npm run build | |
- name: Make outputs dir | |
run: mkdir -p ./build | |
- name: Compress outputs(Windows) | |
shell: pwsh | |
if: runner.os == 'Windows' | |
run: | | |
Move-Item -Path ./target/release/bluetooth_battery_monitor.exe -Destination './build' | |
- name: Compress outputs(Linux/MacOS) | |
shell: bash | |
if: runner.os != 'Windows' | |
run: | | |
mv ./target/release/bluetooth_battery_monitor ./build | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: Bluetooth Battery Monitor ${{runner.os}} | |
path: | | |
./build/ |