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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
integration
Commits
43b3545e
Commit
43b3545e
authored
7 years ago
by
Spencer Brown
Browse files
Options
Downloads
Patches
Plain Diff
Run integration test against channelbot repo
parent
cc7343c1
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-0
1 addition, 0 deletions
.gitlab-ci.yml
basice2e/run.sh
+1
-1
1 addition, 1 deletion
basice2e/run.sh
build.sh
+20
-0
20 additions, 0 deletions
build.sh
with
22 additions
and
1 deletion
.gitlab-ci.yml
+
1
−
0
View file @
43b3545e
...
@@ -48,6 +48,7 @@ installbinaries:
...
@@ -48,6 +48,7 @@ installbinaries:
-
chmod +x bin/server
-
chmod +x bin/server
-
"
curl
-f
-L
-H
\"
PRIVATE-TOKEN:
$PATKEY
\"
-o
bin/client
$CLIENT_URL"
-
"
curl
-f
-L
-H
\"
PRIVATE-TOKEN:
$PATKEY
\"
-o
bin/client
$CLIENT_URL"
-
chmod +x bin/client
-
chmod +x bin/client
-
"
curl
-f
-L
-H
\"
PRIVATE-TOKEN:
$PATKEY
\"
-o
bin/channelbot
$CHANNELBOT_URL"
-
echo $PWD
-
echo $PWD
-
find bin/ -type f -exec file {} \;
-
find bin/ -type f -exec file {} \;
artifacts
:
artifacts
:
...
...
This diff is collapsed.
Click to expand it.
basice2e/run.sh
+
1
−
1
View file @
43b3545e
...
@@ -90,7 +90,7 @@ runclients() {
...
@@ -90,7 +90,7 @@ runclients() {
}
}
# Start a channelbot server
# Start a channelbot server
CHANNELCMD
=
"../bin/
client
channelbot -v -i 31 --nick
\"
#General
\"
--numnodes 5 -s
$LASTNODE
-f blobchannel --noratchet"
CHANNELCMD
=
"../bin/channelbot -v -i 31 --nick
\"
#General
\"
--numnodes 5 -s
$LASTNODE
-f blobchannel --noratchet"
eval
$CHANNELCMD
>>
$CHANNELOUT
2>&1 &
eval
$CHANNELCMD
>>
$CHANNELOUT
2>&1 &
PIDVAL
=
$!
PIDVAL
=
$!
echo
$PIDVAL
>>
results/serverpids
echo
$PIDVAL
>>
results/serverpids
...
...
This diff is collapsed.
Click to expand it.
build.sh
0 → 100755
+
20
−
0
View file @
43b3545e
#!/bin/bash
# This intended for manually running the integration tests on your own machine
# and assumes that you've cloned the Go repos to your GOPATH and updated them
# with Glide.
pushd
$GOPATH
/src/gitlab.com/privategrity/client
go build
popd
mv
$GOPATH
/src/gitlab.com/privategrity/client/client bin
pushd
$GOPATH
/src/gitlab.com/privategrity/server
go build
popd
mv
$GOPATH
/src/gitlab.com/privategrity/server/server bin
pushd
$GOPATH
/src/gitlab.com/privategrity/channelbot
go build
popd
mv
$GOPATH
/src/gitlab.com/privategrity/channelbot/channelbot bin
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