github.com/fafucoder/cilium@v1.6.11/common/build.sh (about)

     1  #!/bin/bash
     2  
     3  set -e
     4  
     5  pushd `dirname $0` > /dev/null
     6  P="`pwd`/.."
     7  popd > /dev/null
     8  
     9  cd "$P"
    10  go install ./... 2> /dev/null || true
    11  make clean
    12  
    13  # Compile with deadlock detection during runtime tests. See GH-1654.
    14  LOCKDEBUG=1 make