Skip to content

Commit 16b67ca

Browse files
committed
Activate travis build
1 parent 7967ccc commit 16b67ca

File tree

9 files changed

+43
-9
lines changed

9 files changed

+43
-9
lines changed

.travis.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
########################
2+
### VARIABLES NEEDED ###
3+
########################
4+
# SOLUTION_NAME The name without file-ending
5+
# DEPLOY_BUILD Which build you want to pack and push to nuget('Debug' or 'Release')
6+
# NUGET Whether or not to deploy the result as a nuget-package (true if set)
7+
# If you don't want to deploy, unset it (or set it to 'false')
8+
#
9+
### Deploy
10+
# NUGET_API_KEY Your key from nuget.org
11+
# NUGET_PROJECT_FILENAME The name without file-ending
12+
# NUGET_PROJECT_PATH The path to your project (starting at git-repo-root; which is /)
13+
#
14+
####################
15+
### GENERAL INFO ###
16+
####################
17+
# git/depth: false is needed for minver
18+
19+
language: csharp
20+
solution: $SOLUTION_NAME.sln
21+
git:
22+
depth: false
23+
install:
24+
- git clone https://github.com/UnterrainerInformatik/Travis-Scripts.git travis
25+
- source travis/functions.sh
26+
- tr_setProjectSubdir .NET
27+
- source $TRAVIS/install.sh
28+
before_script:
29+
- source $TRAVIS/before_script.sh
30+
script:
31+
- source $TRAVIS/script.sh
32+
deploy:
33+
skip_cleanup: true
34+
provider: script
35+
script:
36+
- ./$TRAVIS/deploy.sh
37+
on:
38+
branch: master
File renamed without changes.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In order to get help with basic GIT commands you may try [the GIT cheat-sheet][c
1111
This repository located on our [homepage][homepage] is private since this is the master- and release-branch. You may clone it, but it will be read-only.
1212
If you want to contribute to our repository (push, open pull requests), please use the copy on github located here: [the public github repository][github]
1313

14-
# ![Icon](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/icon.png) BloomEffectRenderer
14+
# ![Icon](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/BloomEffectRenderer/icon.png) BloomEffectRenderer
1515

1616
This class is a PCL library for MonoGame that implements a bloom effect.
1717
If you'd like your game to truly shine, you can use this little beauty without much hassle.
@@ -141,13 +141,13 @@ A test-project is included. You can manipulate the values of the shaders directl
141141

142142
Here are a few screenshots:
143143

144-
![Bloom Off](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/bloom_off.png)
144+
![Bloom Off](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/docs/bloom_off.png)
145145

146-
![Bloom 1](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/bloom_1.png)
146+
![Bloom 1](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/docs/bloom_1.png)
147147

148-
![Bloom 2](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/bloom_2.png)
148+
![Bloom 2](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/docs/bloom_2.png)
149149

150-
![Bloom 3](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/bloom_3.png)
150+
![Bloom 3](https://github.com/UnterrainerInformatik/BloomEffectRenderer/raw/master/docs/bloom_3.png)
151151

152152

153153

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

nuget_pack.bat

Lines changed: 0 additions & 2 deletions
This file was deleted.

nuget_push.bat

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)