aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml6
-rw-r--r--README.md3
-rw-r--r--appveyor.yml19
-rw-r--r--bors.toml4
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
16branches:
17 only:
18 - staging
19 - master
20 - trying
diff --git a/README.md b/README.md
index 1b28b628c..a45cbf28d 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,9 @@
2 2
3[![Join the chat at https://gitter.im/libsyntax2/Lobby](https://badges.gitter.im/libsyntax2/Lobby.svg)](https://gitter.im/libsyntax2/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 3[![Join the chat at https://gitter.im/libsyntax2/Lobby](https://badges.gitter.im/libsyntax2/Lobby.svg)](https://gitter.im/libsyntax2/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4[![Build Status](https://travis-ci.org/matklad/libsyntax2.svg?branch=master)](https://travis-ci.org/matklad/libsyntax2) 4[![Build Status](https://travis-ci.org/matklad/libsyntax2.svg?branch=master)](https://travis-ci.org/matklad/libsyntax2)
5[![Build status](https://ci.appveyor.com/api/projects/status/j56x1hbje8rdg6xk/branch/master?svg=true)](https://ci.appveyor.com/project/matklad/libsyntax2/branch/master)
6
7
5 8
6libsyntax2.0 is an **experimental** implementation of the corresponding [RFC](https://github.com/rust-lang/rfcs/pull/2256). 9libsyntax2.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 @@
1os: Visual Studio 2015
2
3install:
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
10build: false
11
12test_script:
13 - cargo test
14
15branches:
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 @@
1status = [
2 "continuous-integration/travis-ci/push",
3 "continuous-integration/appveyor/branch"
4]