Skip to content
Snippets Groups Projects
Commit 4462e1d8 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch 'tweak_go_building' into 'main'

add flag to fix go building, don't know why this changed but ok

See merge request !1355
parents 03f7fe02 003a2539
No related branches found
No related tags found
2 merge requests!1390Catch up with Main,!1355add flag to fix go building, don't know why this changed but ok
Pipeline #9908 failed
Pipeline: workspaces

#9910

    ......@@ -34,6 +34,10 @@ type calibrationInfo struct {
    Locator string `json:"locator"`
    }
    //CapoInput
    /**
    * struct for holding CAPO information
    */
    type CapoInput struct {
    CapoPath string
    CapoProfile string
    ......
    ......@@ -41,7 +41,7 @@ do
    cd "$module"
    # Run the build
    CGO_ENABLED=0 go build -a -ldflags "-w -s" -o $BUILD_DIR/$module
    CGO_ENABLED=0 go build -a -buildvcs=false -ldflags "-w -s" -o $BUILD_DIR/$module
    cd ..
    done
    ......@@ -32,7 +32,7 @@ do
    # Run the build
    # go generate
    CGO_ENABLED=0 go build -a -ldflags "-w -s" -o $BUILD_DIR/$module
    CGO_ENABLED=0 go build -a -buildvcs=false -ldflags "-w -s" -o $BUILD_DIR/$module
    cd ..
    done
    """move vlass cal nodes
    Revision ID: 1f32110d170d
    Revises: 762c98a8adf1
    Revises: 0f3095e84234
    Create Date: 2023-05-19 09:29:36.233260
    """
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment