Skip to content

Update dependencies #89

Update dependencies

Update dependencies #89

Workflow file for this run

# Runs on push to main, basically the "release" version since we don't really do releases (that's bad right)
name: Cargo Build
on:
push:
branches: [main]
paths-ignore:
- "README.md"
- "**.json"
- "**.yml"
- "LICENSE"
- "!.github/workflows/cargo-build.yml"
- "installer/**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- os: ubuntu-latest
file-name: qpm
prefix: linux
- os: macOS-latest
file-name: qpm
prefix: macos
- os: windows-latest
file-name: qpm.exe
prefix: windows
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Get libdbus if Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get install -y libdbus-1-dev
- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --release
- name: Cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Upload executable
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.prefix }}-${{ matrix.file-name }}
path: ./target/release/${{ matrix.file-name }}
if-no-files-found: error