Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
builder
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
builder
Commits
14e8d59d
Commit
14e8d59d
authored
3 years ago
by
Richard T. Carback III
Browse files
Options
Downloads
Patches
Plain Diff
Updates to run go mod tidy
parent
244f8d52
No related branches found
No related tags found
1 merge request
!1
Release
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
builder/build.py
+2
-0
2 additions, 0 deletions
builder/build.py
builder/main.py
+11
-7
11 additions, 7 deletions
builder/main.py
with
13 additions
and
7 deletions
builder/build.py
+
2
−
0
View file @
14e8d59d
...
...
@@ -55,6 +55,7 @@ def checkout(repo, branch):
[
'
git
'
,
'
checkout
'
,
'
-B
'
,
branch
],
[
'
git
'
,
'
branch
'
,
'
--set-upstream-to=origin/{}
'
.
format
(
branch
),
branch
],
[
'
git
'
,
'
pull
'
],
[
'
git
'
,
'
push
'
,
'
-u
'
,
'
origin
'
,
branch
],
]
for
cmd
in
cmds
:
run
(
cmd
)
...
...
@@ -105,6 +106,7 @@ def update(repo, dependencies):
raise
(
"
Second update failure
"
)
if
not
check_changes
():
raise
(
"
bad repository state, will not update
"
)
run
([
'
go
'
,
'
mod
'
,
'
tidy
'
])
res
=
run
([
'
git
'
,
'
commit
'
,
'
go.mod
'
,
'
go.sum
'
,
'
-m
'
,
'
update deps
'
])
# 1 means nothing to commit, not an error
...
...
This diff is collapsed.
Click to expand it.
builder/main.py
+
11
−
7
View file @
14e8d59d
...
...
@@ -30,40 +30,44 @@ proj_conf = {
'
repo
'
:
'
git@gitlab.com:elixxir/crypto
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
primitives
'
],
},
'
ring
'
:
{
'
repo
'
:
'
git@gitlab.com:xx_network/ring
'
,
'
dependencies
'
:
[],
},
'
comms
'
:
{
'
repo
'
:
'
git@gitlab.com:elixxir/comms
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
],
},
'
server
'
:
{
# Note -- leaving out GPU, ekv, and others for now!
'
repo
'
:
'
git@gitlab.com:elixxir/server
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
,
'
comms
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
,
'
comms
'
],
},
'
permissioning
'
:
{
'
repo
'
:
'
git@gitlab.com:elixxir/registration
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
,
'
comms
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
,
'
comms
'
],
},
'
gateway
'
:
{
'
repo
'
:
'
git@gitlab.com:elixxir/gateway
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
,
'
comms
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
,
'
comms
'
],
},
'
client
'
:
{
'
repo
'
:
'
git@gitlab.com:elixxir/client
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
,
'
comms
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
,
'
comms
'
],
},
'
udb
'
:
{
'
repo
'
:
'
git@gitlab.com:elixxir/user-discovery-bot
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
,
'
comms
'
,
'
client
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
,
'
comms
'
,
'
client
'
],
},
'
notifications-bot
'
:
{
'
repo
'
:
'
git@gitlab.com:elixxir/notifications-bot
'
,
'
dependencies
'
:
[
'
xxprimitives
'
,
'
xxcrypto
'
,
'
xxcomms
'
,
'
primitives
'
,
'
crypto
'
,
'
comms
'
],
'
primitives
'
,
'
crypto
'
,
'
ring
'
,
'
comms
'
],
},
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment