File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ before_install:
19
19
# Versions of g++ prior to 4.8 don't have very good C++11 support.
20
20
- sudo apt-get install -y g++-4.8
21
21
&& sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
22
- - wget https://googletest.googlecode .com/files/gtest -1.7.0.zip
22
+ - wget https://codeload.github .com/google/googletest/zip/release -1.8.0
23
23
&& cd test
24
- && unzip ../gtest -1.7.0.zip
24
+ && unzip ../release -1.8.0
25
25
&& cd ..
26
- && rm gtest -1.7.0.zip
26
+ && rm release -1.8.0
27
27
28
28
script : mkdir build && cd build && cmake .. -Dtest=ON && make && test/runTests && make memcheck
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ libgraphqlparser requires a C++ compiler that supports C++11. It
23
23
also requires Mac OS X or Linux.
24
24
25
25
To run tests, please download googletest from
26
- https://googletest.googlecode. com/files/gtest -1.7 .0.zip and unzip it
27
- in the ` test ` subdirectory.
26
+ https://github. com/google/googletest/archive/release -1.8 .0.zip
27
+ and unzip it in the ` test ` subdirectory.
28
28
29
29
## Building libgraphqlparser
30
30
Original file line number Diff line number Diff line change 1
1
CTestTestfile.cmake
2
2
gtest * /*
3
+ googletest *
4
+ release-1.8.0 *
3
5
runTests *
Original file line number Diff line number Diff line change 1
- ADD_SUBDIRECTORY (gtest-1.7.0 )
1
+ ADD_SUBDIRECTORY (googletest-release-1.8.0/googletest )
2
2
3
3
ENABLE_TESTING ()
4
4
You can’t perform that action at this time.
0 commit comments