diff options
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | appveyor.yml | 19 | ||||
-rw-r--r-- | bors.toml | 4 |
4 files changed, 32 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 2140f8d4a..b3134fd04 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -12,3 +12,9 @@ matrix: | |||
12 | - rust: stable | 12 | - rust: stable |
13 | script: | 13 | script: |
14 | - cargo test | 14 | - cargo test |
15 | |||
16 | branches: | ||
17 | only: | ||
18 | - staging | ||
19 | - master | ||
20 | - trying | ||
@@ -2,6 +2,9 @@ | |||
2 | 2 | ||
3 | [](https://gitter.im/libsyntax2/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | 3 | [](https://gitter.im/libsyntax2/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
4 | [](https://travis-ci.org/matklad/libsyntax2) | 4 | [](https://travis-ci.org/matklad/libsyntax2) |
5 | [](https://ci.appveyor.com/project/matklad/libsyntax2/branch/master) | ||
6 | |||
7 | |||
5 | 8 | ||
6 | libsyntax2.0 is an **experimental** implementation of the corresponding [RFC](https://github.com/rust-lang/rfcs/pull/2256). | 9 | libsyntax2.0 is an **experimental** implementation of the corresponding [RFC](https://github.com/rust-lang/rfcs/pull/2256). |
7 | 10 | ||
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..cd7d1c2da --- /dev/null +++ b/appveyor.yml | |||
@@ -0,0 +1,19 @@ | |||
1 | os: Visual Studio 2015 | ||
2 | |||
3 | install: | ||
4 | - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe | ||
5 | - rustup-init -yv --default-toolchain stable --default-host x86_64-pc-windows-msvc | ||
6 | - set PATH=%PATH%;%USERPROFILE%\.cargo\bin | ||
7 | - rustc -vV | ||
8 | - cargo -vV | ||
9 | |||
10 | build: false | ||
11 | |||
12 | test_script: | ||
13 | - cargo test | ||
14 | |||
15 | branches: | ||
16 | only: | ||
17 | - staging | ||
18 | - master | ||
19 | - trying | ||
diff --git a/bors.toml b/bors.toml new file mode 100644 index 000000000..4e6e85f45 --- /dev/null +++ b/bors.toml | |||
@@ -0,0 +1,4 @@ | |||
1 | status = [ | ||
2 | "continuous-integration/travis-ci/push", | ||
3 | "continuous-integration/appveyor/branch" | ||
4 | ] | ||