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 2d1e1cc commit 215a31fCopy full SHA for 215a31f
.gitignore
@@ -1,6 +1,7 @@
1
.*
2
!.gitignore
3
!.appveyor.yml
4
+!.travis.yml
5
build/
6
.build/
7
_build/
.travis.yml
@@ -0,0 +1,20 @@
+sudo: required
+
+services:
+ - docker
+before_script:
+ - cd tests
8
+ - docker build -t j-ulrich/http-status-codes -f Dockerfile ..
9
10
+script:
11
+ - >
12
+ docker run j-ulrich/http-status-codes /bin/bash
13
+ g++ --version
14
+ && qmake --version
15
+ && cd tests
16
+ && mkdir _build
17
+ && cd _build
18
+ && cmake -DCMAKE_BUILD_TYPE=Release ..
19
+ && make all
20
+ && ctest --ouput-on-failure
tests/Dockerfile
@@ -0,0 +1,5 @@
+FROM julrich/docker_qt:latest
+RUN mkdir /build
+COPY . /build
+WORKDIR /build
0 commit comments