File tree Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 11. *
22! .gitignore
33! .appveyor.yml
4+ ! .travis.yml
45build /
56.build /
67_build /
Original file line number Diff line number Diff line change 1+ sudo : required
2+
3+ services :
4+ - docker
5+
6+ before_script :
7+ - 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 -c "
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
21+ "
Original file line number Diff line number Diff line change 11# HTTP Status Codes and Reason Phrases for C, C++ and Qt #
22
3- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/ijp196mjo0vsover/branch/master?svg=true )] ( https://ci.appveyor.com/project/j-ulrich/http-status-codes-cpp/branch/master )
3+ [ ![ Linux build status] ( https://travis-ci.org/j-ulrich/http-status-codes-cpp.svg?branch=master )] ( https://travis-ci.org/j-ulrich/http-status-codes-cpp )
4+ [ ![ Windows build status] ( https://ci.appveyor.com/api/projects/status/ijp196mjo0vsover/branch/master?svg=true )] ( https://ci.appveyor.com/project/j-ulrich/http-status-codes-cpp/branch/master )
45
56
67This repository provides the HTTP status codes and reason phrases in different variants for C/C++.
@@ -13,7 +14,7 @@ Data has been taken from [for-GET/know-your-http-well](https://github.com/for-GE
1314
1415> - [ Variants] ( #variants )
1516> - [ Example] ( #example )
16- > - [ Documentation] ( #examples )
17+ > - [ Documentation] ( #documentation )
1718> - [ Status Codes Enum] ( #status-codes-enum )
1819> - [ Category/Class Tests] ( #categoryclass-tests )
1920> - [ Reason Phrases] ( #reason-phrases )
Original file line number Diff line number Diff line change 1+ FROM julrich/docker_qt:latest
2+
3+ RUN mkdir /build
4+ COPY . /build
5+ WORKDIR /build
You can’t perform that action at this time.
0 commit comments