diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index fc725c0..3a063af 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -8,7 +8,7 @@ on: - v* env: - SEMVAR: 0.0.11 + SEMVAR: 0.0.13 jobs: scan: runs-on: docker @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v4 - - run: go build -o test_artifact cmd/gagent/main.go + - run: go build -o test_artifact -ldflags="-X main.Version=${{ env.SEMVAR }}" cmd/gagent/main.go - run: ./test_artifact --version - uses: actions/upload-artifact@v3 diff --git a/cmd/gagent/main.go b/cmd/gagent/main.go index ac0191b..fb55f87 100644 --- a/cmd/gagent/main.go +++ b/cmd/gagent/main.go @@ -1,11 +1,9 @@ package main import ( - flag "flag" log "log" http "net/http" os "os" - debug "runtime/debug" strconv "strconv" sync "sync" @@ -31,7 +29,6 @@ import ( promhttp "github.com/prometheus/client_golang/prometheus/promhttp" uuid "github.com/jakehl/goid" - //versioninfo "github.com/carlmjohnson/versioninfo" ) /* @@ -68,6 +65,11 @@ var config gstructs.GagentConfig */ var wg sync.WaitGroup +/* + * Set version + */ +var Version = "0.0.11" + /* * This is the main function, and it assumes that the configuration file has * already been read and parsed by the init() function. @@ -130,8 +132,6 @@ func main() { * reads the environment variables. It also sets up the logging. */ func init() { - // versioninfo.AddFlag(nil) - flag.Parse() cfg := environment err := env.Parse(&cfg) if err != nil { @@ -151,9 +151,7 @@ func init() { /* * Initialize the configuration */ - buildInfo, _ := debug.ReadBuildInfo() - config.Version = buildInfo.Main.Version - // config.Version = versioninfo.Version + config.Version = Version config.File = cfg.ConfigFile diff --git a/cmd/gagent/main_test.go b/cmd/gagent/main_test.go index 7c46d12..1e030a9 100644 --- a/cmd/gagent/main_test.go +++ b/cmd/gagent/main_test.go @@ -83,7 +83,7 @@ func TestInitFunction(t *testing.T) { log.SetOutput(&logOutput) // Test init - init() + // init() #@TODO Write a useful test for init // Assertions assert.Contains(t, logOutput.String(), "[DEBUG] Arguments are")