Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
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
张蕾
Geth-Modification
Commits
e05d35e6
Commit
e05d35e6
authored
Nov 23, 2016
by
Péter Szilágyi
Committed by
GitHub
Nov 23, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3317 from fjl/build-unstable-simplify
build, internal/build: simplify unstable build checks
parents
f7da5b29
e1e2df65
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
10 deletions
+15
-10
appveyor.yml
appveyor.yml
+5
-6
ci.go
build/ci.go
+1
-1
env.go
internal/build/env.go
+3
-2
util.go
internal/build/util.go
+6
-1
No files found.
appveyor.yml
View file @
e05d35e6
...
...
@@ -22,19 +22,18 @@ environment:
install
:
-
rmdir C:\go /s /q
-
appveyor DownloadFile https://storage.googleapis.com/golang/go1.7.3.windows-
amd64
.zip
-
7z x go1.7.3.windows-
amd64
.zip -y -oC:\ > NUL
-
appveyor DownloadFile https://storage.googleapis.com/golang/go1.7.3.windows-
%GETH_ARCH%
.zip
-
7z x go1.7.3.windows-
%GETH_ARCH%
.zip -y -oC:\ > NUL
-
go version
-
gcc --version
build_script
:
-
go run build\ci.go install
-arch %GETH_ARCH%
-
go run build\ci.go install
after_build
:
-
go run build\ci.go archive -
arch %GETH_ARCH% -
type zip -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
-
go run build\ci.go nsis -
arch %GETH_ARCH% -
signer WINDOWS_SIGNING_KEY -upload gethstore/builds
-
go run build\ci.go archive -type zip -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
-
go run build\ci.go nsis -signer WINDOWS_SIGNING_KEY -upload gethstore/builds
test_script
:
-
set GOARCH=%GETH_ARCH%
-
set CGO_ENABLED=1
-
go run build\ci.go test -vet -coverage
build/ci.go
View file @
e05d35e6
...
...
@@ -459,7 +459,7 @@ func makeWorkdir(wdflag string) string {
}
func
isUnstableBuild
(
env
build
.
Environment
)
bool
{
if
env
.
Branch
!=
"master"
&&
env
.
Tag
!=
""
{
if
env
.
Tag
!=
""
{
return
false
}
return
true
...
...
internal/build/env.go
View file @
e05d35e6
...
...
@@ -88,8 +88,9 @@ func LocalEnv() Environment {
env
.
Branch
=
b
}
}
// Note that we don't get the current git tag. It would slow down
// builds and isn't used by anything.
if
env
.
Tag
==
""
{
env
.
Tag
=
RunGit
(
"for-each-ref"
,
"--points-at=HEAD"
,
"--count=1"
,
"--format=%(refname:short)"
,
"refs/tags"
)
}
return
env
}
...
...
internal/build/util.go
View file @
e05d35e6
...
...
@@ -76,6 +76,8 @@ func VERSION() string {
return
string
(
bytes
.
TrimSpace
(
version
))
}
var
warnedAboutGit
bool
// RunGit runs a git subcommand and returns its output.
// The command must complete successfully.
func
RunGit
(
args
...
string
)
string
{
...
...
@@ -83,7 +85,10 @@ func RunGit(args ...string) string {
var
stdout
,
stderr
bytes
.
Buffer
cmd
.
Stdout
,
cmd
.
Stderr
=
&
stdout
,
&
stderr
if
err
:=
cmd
.
Run
();
err
==
exec
.
ErrNotFound
{
log
.
Println
(
"no git in PATH"
)
if
!
warnedAboutGit
{
log
.
Println
(
"Warning: can't find 'git' in PATH"
)
warnedAboutGit
=
true
}
return
""
}
else
if
err
!=
nil
{
log
.
Fatal
(
strings
.
Join
(
cmd
.
Args
,
" "
),
": "
,
err
,
"
\n
"
,
stderr
.
String
())
...
...
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