We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf0b1f commit 2b1c947Copy full SHA for 2b1c947
.gitignore
@@ -1,6 +1,7 @@
1
-# exclude all dot files except .git files
+# exclude all dot files except .git and travis files
2
.*
3
!.git*
4
+!.travis.yml
5
6
# exclude binaries and temporary files
7
bin/
.travis.yml
@@ -0,0 +1,25 @@
+language: cpp
+sudo: required
+dist: trusty
+compiler:
+- gcc
+os:
+- linux
8
+script:
9
+- if [ $TRAVIS_OS_NAME == linux ]; then mkdir bin && cd bin && cmake .. && make fi
10
+addons:
11
+ apt:
12
+ sources:
13
+ - ubuntu-toolchain-r-test
14
+ packages:
15
+ - g++-7
16
+ - cmake
17
+branches:
18
+ only:
19
+ - xd_dev
20
+ - "/^v\\d+\\./"
21
+notifications:
22
+ email: false
23
+env:
24
+ global:
25
+ - LANG="en_US.UTF-8"
0 commit comments