Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
integration
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
integration
Merge requests
!11
Something went wrong on our end
Release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Release
release
into
master
Overview
0
Commits
158
Pipelines
0
Changes
1
Closed
Release
Sydney Anne Erickson
requested to merge
release
into
master
Nov 3, 2021
Overview
0
Commits
158
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
d1f95a06
Prev
Next
Show latest version
1 file
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d1f95a06
Fix download script's build output pathing
· d1f95a06
Josh Brooks
authored
Feb 28, 2022
download.sh
+
6
−
6
View file @ d1f95a06
Edit in single-file editor
Open in Web IDE
Show full file
@@ -8,40 +8,40 @@ git clone https://git.xx.network/elixxir/client gitlab.com/elixxir/client
pushd
gitlab.com/elixxir/client
go mod vendor
-v
go mod tidy
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/client main.go
"
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/client
"
main.go
popd
echo
"Downloading user discovery..."
git clone https://git.xx.network/elixxir/user-discovery-bot gitlab.com/elixxir/user-discovery-bot
pushd
gitlab.com/elixxir/user-discovery-bot
go mod vendor
-v
go mod tidy
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/udb main.go
"
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/udb
"
main.go
popd
echo
"Downloading permissioning server..."
git clone https://git.xx.network/elixxir/registration gitlab.com/elixxir/registration
pushd
gitlab.com/elixxir/registration
go mod vendor
-v
go mod tidy
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/permissioning main.go
"
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/permissioning
"
main.go
popd
echo
"Downloading client registrar"
git clone https://git.xx.network/elixxir/client-registrar.git gitlab.com/elixxir/client-registrar
pushd
gitlab.com/elixxir/client-registrar
go mod vendor
-v
go mod tidy
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/client-registrar gitlab.com/elixxir/client-registrar
"
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/client-registrar
"
gitlab.com/elixxir/client-registrar
popd
echo
"Downloading cMix node..."
git clone https://git.xx.network/elixxir/server gitlab.com/elixxir/server
pushd
gitlab.com/elixxir/server
go mod vendor
-v
go mod tidy
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/server main.go
"
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/server
"
main.go
popd
echo
"Downloading cMix gateway..."
git clone https://git.xx.network/elixxir/gateway gitlab.com/elixxir/gateway
pushd
gitlab.com/elixxir/gateway
go mod vendor
-v
go mod tidy
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/gateway main.go
"
go build
-mod
vendor
-o
"
$LOCALPATH
/bin/gateway
"
main.go
popd
Loading