[GUI] Make the Open with thing actually work #263
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: [push, pull_request] | |
jobs: | |
build: | |
name: Build for ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: linux | |
os: ubuntu-latest | |
- name: windows | |
os: windows-latest | |
bin_extension: .exe | |
- name: macos | |
os: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: 1.74.1 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2.7.0 | |
- name: Install dependencies (linux) | |
run: sudo apt-get -y install libgtk-3-dev libasound2-dev | |
if: matrix.name == 'linux' | |
- name: Build | |
run: cargo build --release --locked --bins | |
env: | |
CARGO_PROFILE_RELEASE_LTO: "true" | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bff-${{ matrix.name }}-${{ github.sha }} | |
path: | | |
./target/release/bff-cli${{ matrix.bin_extension }} | |
./target/release/bff-gui${{ matrix.bin_extension }} |