aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--appveyor.yml19
2 files changed, 0 insertions, 21 deletions
diff --git a/README.md b/README.md
index 1c5398779..a6195237f 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,6 @@
1# Rust Analyzer 1# Rust Analyzer
2 2
3[![Build Status](https://travis-ci.org/rust-analyzer/rust-analyzer.svg?branch=master)](https://travis-ci.org/rust-analyzer/rust-analyzer) 3[![Build Status](https://travis-ci.org/rust-analyzer/rust-analyzer.svg?branch=master)](https://travis-ci.org/rust-analyzer/rust-analyzer)
4[![Build status](https://ci.appveyor.com/api/projects/status/vtt455oi3hjy9uvk/branch/master?svg=true)](https://ci.appveyor.com/project/matklad/rust-analyzer/branch/master)
5
6 4
7Rust Analyzer is an **experimental** modular compiler frontend for the 5Rust Analyzer is an **experimental** modular compiler frontend for the
8Rust language, which aims to lay a foundation for excellent IDE 6Rust language, which aims to lay a foundation for excellent IDE
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index a32a1e7b8..000000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,19 +0,0 @@
1os: Visual Studio 2015
2
3install:
4 - curl https://win.rustup.rs/ --output rustup-init.exe
5 - rustup-init -yv --default-toolchain beta --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