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
07541004
Unverified
Commit
07541004
authored
Nov 21, 2019
by
Péter Szilágyi
Committed by
GitHub
Nov 21, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #20356 from karalabe/ppa-fix-cigo
build: pull in ci.go dependencies for the PPA builder
parents
89ab8a74
475ae8bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
ci.go
build/ci.go
+8
-4
No files found.
build/ci.go
View file @
07541004
...
...
@@ -501,10 +501,14 @@ func doDebianSource(cmdline []string) {
// Download and verify the Go source package.
gobundle
:=
downloadGoSources
(
*
goversion
,
*
cachedir
)
// Download all the dependencies needed to build the sources
depfetch
:=
goTool
(
"install"
,
"-n"
,
"./..."
)
depfetch
.
Env
=
append
(
os
.
Environ
(),
"GOPATH="
+
filepath
.
Join
(
*
workdir
,
"modgopath"
))
build
.
MustRun
(
depfetch
)
// Download all the dependencies needed to build the sources and run the ci script
srcdepfetch
:=
goTool
(
"install"
,
"-n"
,
"./..."
)
srcdepfetch
.
Env
=
append
(
os
.
Environ
(),
"GOPATH="
+
filepath
.
Join
(
*
workdir
,
"modgopath"
))
build
.
MustRun
(
srcdepfetch
)
cidepfetch
:=
goTool
(
"run"
,
"./build/ci.go"
)
cidepfetch
.
Env
=
append
(
os
.
Environ
(),
"GOPATH="
+
filepath
.
Join
(
*
workdir
,
"modgopath"
))
cidepfetch
.
Run
()
// Command fails, don't care, we only need the deps to start it
// Create Debian packages and upload them.
for
_
,
pkg
:=
range
debPackages
{
...
...
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