Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
3d9d1a12
Commit
3d9d1a12
authored
Aug 26, 2016
by
Feng Xiao
Committed by
GitHub
Aug 26, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2013 from xfxyjwf/gmock
Update gmock links.
parents
08951c3c
c4a84abc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
appveyor.yml
appveyor.yml
+9
-3
autogen.sh
autogen.sh
+9
-4
No files found.
appveyor.yml
View file @
3d9d1a12
...
...
@@ -19,9 +19,15 @@ environment:
test
:
off
install
:
-
ps
:
Start-FileDownload https://googlemock.googlecode.com/files/gmock-1.7.0.zip
-
7z x gmock-1.7.0.zip
-
rename gmock-1.7.0 gmock
-
ps
:
Start-FileDownload https://github.com/google/googlemock/archive/release-1.7.0.zip
-
7z x release-1.7.0.zip
-
del /Q release-1.7.0.zip
-
rename googlemock-release-1.7.0 gmock
-
ps
:
Start-FileDownload https://github.com/google/googletest/archive/release-1.7.0.zip
-
7z x release-1.7.0.zip
-
del /Q release-1.7.0.zip
-
rename googletest-release-1.7.0 gtest
-
move gtest gmock
-
ps
:
Start-FileDownload https://go.microsoft.com/fwlink/?LinkID=809122 -FileName dotnetsdk.exe
-
dotnetsdk.exe /install /quiet /norestart
...
...
autogen.sh
View file @
3d9d1a12
...
...
@@ -31,10 +31,15 @@ fi
# directory is set up as an SVN external.
if
test
!
-e
gmock
;
then
echo
"Google Mock not present. Fetching gmock-1.7.0 from the web..."
curl
$curlopts
-O
https://googlemock.googlecode.com/files/gmock-1.7.0.zip
unzip
-q
gmock-1.7.0.zip
rm
gmock-1.7.0.zip
mv
gmock-1.7.0 gmock
curl
$curlopts
-L
-O
https://github.com/google/googlemock/archive/release-1.7.0.zip
unzip
-q
release-1.7.0.zip
rm
release-1.7.0.zip
mv
googlemock-release-1.7.0 gmock
curl
$curlopts
-L
-O
https://github.com/google/googletest/archive/release-1.7.0.zip
unzip
-q
release-1.7.0.zip
rm
release-1.7.0.zip
mv
googletest-release-1.7.0 gmock/gtest
fi
set
-ex
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment