-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ferran Pons
committed
Aug 10, 2016
1 parent
3fae0e4
commit 7a925f2
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: csharp | ||
solution: ZombustersWindows.sln | ||
before_install: | ||
- wget http://www.monogame.net/releases/v3.4/MonoGame.Linux.zip | ||
- unzip MonoGame.Linux.zip | ||
- find * -type f -exec chmod 777 {} \; # lazy just make all executable | ||
install: | ||
- sudo apt-get install -qq monodevelop libopenal-dev referenceassemblies-pcl ttf-mscorefonts-installer gtk-sharp2; # install needed packages for the monogame sdk | ||
- sudo ./generate.sh && yes Y|sudo ./monogame-linux.run; # install monogame sdk | ||
script: | ||
- (cd Project/Content && mono /opt/monogame-pipeline/MGCB.exe /rebuild /@:"Content.mgcb" /outputDir:"../bin/Release/Content") |