Skip to content

Commit 67ee4ac

Browse files
committed
[s1904] Add continued integration support using Travis CI
Every push to a repository will start a new build on travis which will make sure that CMaNGOS still builds. Currently, Travis only supports gcc and clang on linux, Windows and OS X build test is not yet available. Thanks to @travis-ci for their awesome software and their sponsors for providing the infrastructure! For the current build status of this repository, go to https://travis-ci.org/cmangos/mangos-wotlk/ (based on commit [12369] - 7349c20)
1 parent 72346d1 commit 67ee4ac

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ tags
2727
TAGS
2828
!.gitignore
2929
!.gitattributes
30+
!.travis.yml
3031

3132
#
3233
# Build generated files

.travis.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: cpp
2+
3+
branches:
4+
only:
5+
- master
6+
7+
compiler:
8+
- gcc
9+
- clang
10+
11+
script:
12+
- test -d _build || mkdir _build
13+
- test -d _install || mkdir _install
14+
- cd _build
15+
- cmake -DPREFIX=../_install ..
16+
- make -j4
17+
18+
notifications:
19+
irc:
20+
channels:
21+
- "irc.rizon.net#cmangos"
22+
on_success: never
23+
on_failure: always

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ To be able to accomplish these goals, we support and promote:
5454
* CMaNGOS IRC channel: #cmangos on irc.rizon.net
5555
* [GitHub repositories](https://github.com/cmangos/)
5656
* [Issue tracker](https://github.com/cmangos/mangos-tbc/issues)
57+
* [Current build status on Travis CI](https://travis-ci.org/cmangos/mangos-tbc/)
5758
* [Wiki](https://github.com/cmangos/mangos-tbc/wiki) with additional information on installation
5859
* Documentation can be found in the doc/ subdirectory and on the github wiki
5960

src/shared/revision_nr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef __REVISION_NR_H__
22
#define __REVISION_NR_H__
3-
#define REVISION_NR "1903"
3+
#define REVISION_NR "1904"
44
#endif // __REVISION_NR_H__

0 commit comments

Comments
 (0)