Skip to content
Snippets Groups Projects
Select Git revision
  • 2961ba1c474209ff6f8d9a43af42635c86ced459
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

XXClient-quick-start-guide.md

Blame
  • Makefile 599 B
    .PHONY: update master release setup update_master update_release build
    
    setup:
    	git config --global --add url."git@gitlab.com:".insteadOf "https://gitlab.com/"
    
    update:
    	rm -rf vendor/
    	go mod vendor
    	-GOFLAGS="" go get -u all
    
    build:
    	go build ./...
    	go mod tidy
    
    update_release:
    	GOFLAGS="" go get -u gitlab.com/elixxir/primitives@release
    	GOFLAGS="" go get -u gitlab.com/elixxir/comms@release
    
    update_master:
    	GOFLAGS="" go get -u gitlab.com/elixxir/primitives@master
    	GOFLAGS="" go get -u gitlab.com/elixxir/comms@master
    
    master: update update_master build
    
    release: update update_release build