-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #5071 - flip1995:gha, r=<try>
[WIP][DNM] Switch to GitHub Actions (maybe?) cc #4577 This is just an experiment. I don't think we have a consensus _if_ we should move away from travis/appveyor. changelog: none
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Integration | ||
|
||
on: | ||
push: | ||
branches: | ||
- auto | ||
- try | ||
paths-ignore: | ||
# Don't run integration test, when only textfiles are modified | ||
- 'rust-toolchain' | ||
- 'COPYRIGHT' | ||
- 'LICENSE-*' | ||
- '**.md' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Build | ||
run: cargo build --features integration | ||
|
||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
integration: | ||
- 'rust-lang/rls' | ||
- 'rust-lang/cargo' | ||
- 'rust-lang/chalk' | ||
- 'Geal/nom' | ||
- 'rust-lang/rustfmt' | ||
- 'hyperium/hyper' | ||
- 'rust-itertools/itertools' | ||
- 'serde-rs/serde' | ||
- 'rust-lang/stdarch' | ||
- 'rust-random/rand' | ||
- 'rust-lang/futures-rs' | ||
- 'Marwes/combine' | ||
- 'rust-lang-nursery/failure' | ||
- 'rust-lang/log' | ||
- 'chronotope/chrono' | ||
|
||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Test ${{ matrix.integration }} | ||
run: cargo test --test integration --features integration | ||
env: | ||
INTEGRATION: ${{ matrix.integration }} |