Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
[build] remove anything related to AppVeyor (#666)
Browse files Browse the repository at this point in the history
As part of consolidating our CI setup, we now have Windows builds running on Jenkins. This means we no longer need to use AppVeyor at all, which is a good thing. AppVeyor is not a CI system well known by other folks working on the Xamarin or Mono teams, where Jenkins is mostly used.

Other changes:
- Updated `.gitignore` for files appearing on Windows: `UpgradeLog.htm` from VS upgrading projects and `*.obj` from running the C tests
  • Loading branch information
jonathanpeppers authored May 1, 2018
1 parent 27ffa48 commit 5378383
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 64 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ packages
/tests/android/**/.project
.gradle/
.idea/
*.obj
UpgradeLog*.htm

### Xcode ###
DerivedData/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
|---------------------------|-----------------------------|
| [![windows-vs-x86][1]][2] | [![osx-clang-x86][3]][4]

[1]: https://ci.appveyor.com/api/projects/status/lnmi5dh2ukm1n79o/branch/master?svg=true
[2]: https://ci.appveyor.com/project/tritao/embeddinator-4000/branch/master
[1]: https://jenkins.mono-project.com/view/Xamarin.MaciOS/job/embeddinator-4000-windows/badge/icon
[2]: https://jenkins.mono-project.com/view/Xamarin.MaciOS/job/embeddinator-4000-windows/
[3]: https://travis-ci.org/mono/Embeddinator-4000.svg?branch=master
[4]: https://travis-ci.org/mono/Embeddinator-4000

Expand Down
55 changes: 0 additions & 55 deletions appveyor.yml

This file was deleted.

7 changes: 0 additions & 7 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,6 @@ Task("Tests")
.IsDependentOn("Run-C-Tests")
.IsDependentOn("Run-Java-Tests");

Task("AppVeyor")
.IsDependentOn("Build-Binder")
.IsDependentOn("Android-Tests")
.IsDependentOn("Build-CSharp-Tests")
.IsDependentOn("Run-C-Tests")
.IsDependentOn("Build-Java-Tests");

Task("Jenkins")
.IsDependentOn("Build-Binder")
.IsDependentOn("Android-Tests")
Expand Down

0 comments on commit 5378383

Please sign in to comment.