Skip to content
Snippets Groups Projects
Commit 4462015f authored by StarToaster's avatar StarToaster
Browse files

Work on fixing CI.

parent 509657ba
No related branches found
No related tags found
No related merge requests found
...@@ -11,13 +11,16 @@ env: ...@@ -11,13 +11,16 @@ env:
jobs: jobs:
build: build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install alsa and udev - name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Build - name: Build
run: cargo build --verbose --workspace run: cargo build --verbose --workspace
# - name: Run tests # - name: Run tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment