Skip to content

Commit

Permalink
Merge pull request #7 from mgeier/nightly
Browse files Browse the repository at this point in the history
CI: add nightly Rust
  • Loading branch information
Prior99 committed Sep 16, 2020
2 parents 8e3efc2 + a618ea6 commit 10f94cc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 31 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/main.yml
Expand Up @@ -6,19 +6,23 @@ jobs:
tests:
strategy:
matrix:
toolchain: [stable, nightly]
toolchain-suffix: [unknown-linux-gnu, apple-darwin, pc-windows-msvc, pc-windows-gnu]
include:
- os: macos-latest
- os: windows-latest
toolchain-suffix: -gnu
- os: windows-latest
toolchain-suffix: -msvc
- os: ubuntu-latest
- toolchain-suffix: unknown-linux-gnu
os: ubuntu-latest
- toolchain-suffix: apple-darwin
os: macos-latest
- toolchain-suffix: pc-windows-gnu
os: windows-latest
- toolchain-suffix: pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable${{ matrix.toolchain-suffix }}
toolchain: ${{ matrix.toolchain }}-${{ matrix.toolchain-suffix }}
override: true
- run: |
rustup show
Expand Down
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
@@ -1,7 +1,5 @@
# libsamplerate-sys

[![Build Status](https://travis-ci.org/Prior99/libsamplerate-sys.svg?branch=master)](https://travis-ci.org/Prior99/libsamplerate-sys)

Rust bindings for [libsamplerate](http://www.mega-nerd.com/SRC/api.html).

Will build libsamplerate from source. Don't forget to initialize git submodules (`git submodule update --init`) or clone with `--recursive`.
Expand Down

0 comments on commit 10f94cc

Please sign in to comment.