Merge "Put cronjobs in order"
[infra/cicd.git] / jjb / oransc / verify-jobs-go.sh
index 6d94734359b42249280344fcbe101b20e174a0fa..84b3f5a090a64a53a512a5a373c7f9d3ce26d558 100644 (file)
@@ -1,19 +1,26 @@
-#!/bin/bash
+#!/bin/bash -x
 
 set -euo pipefail
 
-cd $WORKSPACE
+DIRECTORY=$WORKSPACE"/"${DIRECTORY}
+cd $DIRECTORY
 
-# read go version from go.mod file
-version=$(grep '^go' go.mod | grep -Eo '[0-9]\.[0-9]+')
+# Read desired Go version from go.mod file
+desired_version=$(grep '^go' go.mod | grep -Eo '[0-9]\.[0-9]+')
 
-echo "Download go $version"
-curl -L  "https://go.dev/dl/go$version.linux-amd64.tar.gz" | sudo tar -C /usr/local -zxf -
+# Remove existing Go installation
+sudo rm -fr /usr/local/go
+
+echo "Download go $desired_version"
+curl -L "https://go.dev/dl/go$desired_version.linux-amd64.tar.gz" | sudo tar -C /usr/local -zxf -
 
 export PATH=$PATH:/usr/local/go/bin
 
 echo "Download project deps"
 go mod tidy
 
+echo "Force build"
+go build -a -v
+
 echo "Run tests"
-go test ./...
+go test ./... -json