deps: Update ashpd #582
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: Rust | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Ubuntu GTK | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
flags: '--no-default-features --features gtk3' | |
- name: Ubuntu XDG | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
flags: '--no-default-features --features xdg-portal,tokio' | |
- name: Windows | |
os: windows-latest | |
target: x86_64-pc-windows-msvc | |
flags: '' | |
- name: Windows CC6 | |
os: windows-latest | |
target: x86_64-pc-windows-msvc | |
flags: '--features common-controls-v6' | |
- name: macOS | |
os: macos-latest | |
target: x86_64-apple-darwin | |
flags: '' | |
- name: WASM32 | |
os: ubuntu-latest | |
target: wasm32-unknown-unknown | |
flags: '' | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "[Ubuntu] install dependencies" | |
if: matrix.name == 'Ubuntu GTK' | |
run: sudo apt update && sudo apt install libgtk-3-dev | |
- name: "[WASM] rustup" | |
if: matrix.name == 'WASM32' | |
run: rustup target add wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build | |
run: cargo build --target ${{ matrix.target }} ${{ matrix.flags }} | |
- name: Test | |
# FIXME | |
if: matrix.name != 'WASM32' | |
run: cargo test --target ${{ matrix.target }} ${{ matrix.flags }} |