github.com/Finschia/finschia-sdk@v0.48.1/tools/cosmovisor/Makefile (about)

     1  #!/usr/bin/make -f
     2  
     3  COSMOVISOR_TAG=v1.4.0
     4  
     5  DEBUG=true
     6  
     7  install:
     8  	go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@$(COSMOVISOR_TAG)
     9  
    10  install-simd:
    11  	go install ./../../...
    12  
    13  .PHONY: install install-simd
    14  
    15  test: test-single
    16  
    17  test-single: test-single-manual-download test-single-auto-download
    18  
    19  test-single-manual-download: install install-simd
    20  	DEBUG=$(DEBUG) sh test_single.sh
    21  
    22  test-single-auto-download: install install-simd
    23  	DEBUG=$(DEBUG) DAEMON_ALLOW_DOWNLOAD_BINARIES=true sh test_single.sh