You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
3 years ago
|
name: Build and test api
|
||
3 years ago
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main, develop ]
|
||
|
pull_request:
|
||
|
branches: [ main, develop ]
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
3 years ago
|
- name: switch working directory
|
||
|
run: cd mediarepo-api
|
||
|
|
||
3 years ago
|
- name: Cache build data
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: |
|
||
|
target
|
||
|
~/.cargo/
|
||
|
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-cargo-
|
||
3 years ago
|
|
||
|
- name: Install OS-specific dependencies
|
||
|
uses: knicknic/os-specific-run@v1.0.3
|
||
|
with:
|
||
|
linux: |
|
||
|
sudo apt update
|
||
|
sudo apt install libwebkit2gtk-4.0-dev libgtk-3-dev libappindicator3-dev -y
|
||
|
|
||
3 years ago
|
- name: Build
|
||
3 years ago
|
run: cargo build
|
||
|
|
||
|
- name: Build API
|
||
|
run: cargo build --features=client-api
|
||
|
|
||
|
- name: Build Plugin
|
||
3 years ago
|
run: cargo build --features=tauri-plugin
|
||
|
|
||
|
- name: Test
|
||
|
run: cargo test --all-features
|