Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
c23f9005
Commit
c23f9005
authored
Mar 11, 2015
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2971 from ethomson/revert_fastfail
Revert "fastfail" from the mingw PR
parents
d7c81945
9a08b319
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
16 deletions
+2
-16
appveyor.yml
+0
-4
script/cibuild.sh
+0
-10
script/install-deps-linux.sh
+1
-1
script/install-deps-osx.sh
+1
-1
No files found.
appveyor.yml
View file @
c23f9005
...
@@ -26,10 +26,6 @@ cache:
...
@@ -26,10 +26,6 @@ cache:
-
x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
-
x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
build_script
:
build_script
:
-
ps
:
|
-
ps
:
|
if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
throw "There are newer queued builds for this pull request, failing early." }
mkdir build
mkdir build
cd build
cd build
if ($env:GENERATOR -ne "MSYS Makefiles") {
if ($env:GENERATOR -ne "MSYS Makefiles") {
...
...
script/cibuild.sh
View file @
c23f9005
#!/bin/sh
#!/bin/sh
# Fail fast for superseded builds to PR's
if
!
[
"
$TRAVIS_PULL_REQUEST
"
=
"false"
]
;
then
if
!
[
\"
$TRAVIS_BUILD_NUMBER
\"
=
$(
curl
-H
"Accept: application/vnd.travis-ci.2+json"
\
https://api.travis-ci.org/repos/libgit2/libgit2/builds?event_type
=
pull_request |
\
jq
".builds | map(select(.pull_request_number ==
$TRAVIS_PULL_REQUEST
))[0].number"
)
]
;
then
echo
"There are newer queued builds for this pull request, failing early."
exit
1
fi
fi
if
[
-n
"
$COVERITY
"
]
;
if
[
-n
"
$COVERITY
"
]
;
then
then
./script/coverity.sh
;
./script/coverity.sh
;
...
...
script/install-deps-linux.sh
View file @
c23f9005
...
@@ -3,4 +3,4 @@
...
@@ -3,4 +3,4 @@
set
-x
set
-x
sudo
apt-get
-qq
update
&&
sudo
apt-get
-qq
update
&&
sudo
apt-get
-qq
install cmake libssh2-1-dev openssh-client openssh-server
jq
sudo
apt-get
-qq
install cmake libssh2-1-dev openssh-client openssh-server
script/install-deps-osx.sh
View file @
c23f9005
...
@@ -2,4 +2,4 @@
...
@@ -2,4 +2,4 @@
set
-x
set
-x
brew install libssh2 cmake
jq
brew install libssh2 cmake
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