Skip to content
Snippets Groups Projects
Select Git revision
  • 5d02765f98ca5cf8dd557aa80bfed2583d6a7d69
  • release default
  • master protected
  • hotfix/gtnNoToken
  • XX-4441
  • Jakub/rootless-CI
  • jonah/refactorProviders
  • Ace/Huawei
  • AceVentura/AccountBackup
  • hotfix/delete-error
  • waitingRoundsRewrite
  • dev
  • quantumSecure
  • hotfix/ratelimit
  • fullRateLimit
  • XX-3564/TlsCipherSuite
  • hotfix/notifications-db
  • hotfix/groupNotification
  • Project/LastMile
  • notls
  • url-repo-rename
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.0
  • v1.0.0
26 results

Makefile

Blame
  • Jake Taylor's avatar
    Jake Taylor authored
    5d02765f
    History
    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