Last active
February 7, 2019 04:47
-
-
Save bolorundurowb/203c738c26c445cf80a554b3f5a446e9 to your computer and use it in GitHub Desktop.
A sample Circle CI config for a C# (csharp) .NET/Mono application
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
# | |
# Build configuration for Circle CI | |
# | |
dependencies: | |
override: | |
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list | |
- sudo apt-get update | |
- sudo apt-get install mono-complete | |
- wget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe | |
- mono nuget.exe restore solution-name.sln | |
- xbuild /p:Configuration=Release solution-name.sln | |
test: | |
override: | |
- echo "test" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment