Skip to content
Snippets Groups Projects
Select Git revision
  • f6136b7424b2b80ef75c8174aefdb4dd06c66585
  • release default
  • master protected
  • feature/xx-4717/logLevel
  • XX-4626/SingleUsePackage
  • josh/DmPackage
  • xx-4437/no-registration
  • feature/project/DM
  • project/channels
  • feature/ctidh
  • Jakub/rootless-CI
  • jono/wasmDemo
  • feature/XX-4108/updateProtoc
  • feature/hotfix/unsafe_send_to_self
  • Anne/OldSessionTesting
  • hotfix/groupChat
  • josh/groupCreationScript
  • feature/XX-3797/restore
  • feature/XX-3789/DeleteIndividualRequests
  • dev
  • feature/debugSendCMIX
21 results

build.sh

Blame
  • build.sh 696 B
    #!/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.
    
    set -x
    set -e
    mkdir -p bin
    pushd bin
    OUT=$PWD
    
    pushd gitlab.com/elixxir/client
    go build -o $OUT/client main.go
    popd
    pushd gitlab.com/elixxir/user-discovery-bot
    go build -o $OUT/udb main.go
    popd
    pushd gitlab.com/elixxir/registration
    go build -o $OUT/permissioning main.go
    popd
    pushd gitlab.com/elixxir/client-registrar
    go build -o $OUT/client-registrar main.go
    popd
    pushd gitlab.com/elixxir/gateway
    go build -o $OUT/gateway main.go
    popd
    pushd gitlab.com/elixxir/server
    go build -o $OUT/server main.go
    popd
    
    popd