Think I fixed the versioning.
All checks were successful
G'Agent Scan, Build, and Test / scan (push) Successful in 1m31s
G'Agent Scan, Build, and Test / build_simple (push) Successful in 1m18s
G'Agent Scan, Build, and Test / test_simple (push) Successful in 18s
G'Agent Scan, Build, and Test / build_image (push) Successful in 1m52s

This commit is contained in:
James Wells 2024-12-26 18:01:37 -08:00
parent 01e3c42ac4
commit 07215828b8
Signed by: jwells
GPG key ID: 73196D10B8E65666
3 changed files with 9 additions and 11 deletions

View file

@ -8,7 +8,7 @@ on:
- v* - v*
env: env:
SEMVAR: 0.0.11 SEMVAR: 0.0.13
jobs: jobs:
scan: scan:
runs-on: docker runs-on: docker
@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4 - 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 - run: ./test_artifact --version
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3

View file

@ -1,11 +1,9 @@
package main package main
import ( import (
flag "flag"
log "log" log "log"
http "net/http" http "net/http"
os "os" os "os"
debug "runtime/debug"
strconv "strconv" strconv "strconv"
sync "sync" sync "sync"
@ -31,7 +29,6 @@ import (
promhttp "github.com/prometheus/client_golang/prometheus/promhttp" promhttp "github.com/prometheus/client_golang/prometheus/promhttp"
uuid "github.com/jakehl/goid" uuid "github.com/jakehl/goid"
//versioninfo "github.com/carlmjohnson/versioninfo"
) )
/* /*
@ -68,6 +65,11 @@ var config gstructs.GagentConfig
*/ */
var wg sync.WaitGroup var wg sync.WaitGroup
/*
* Set version
*/
var Version = "0.0.11"
/* /*
* This is the main function, and it assumes that the configuration file has * This is the main function, and it assumes that the configuration file has
* already been read and parsed by the init() function. * 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. * reads the environment variables. It also sets up the logging.
*/ */
func init() { func init() {
// versioninfo.AddFlag(nil)
flag.Parse()
cfg := environment cfg := environment
err := env.Parse(&cfg) err := env.Parse(&cfg)
if err != nil { if err != nil {
@ -151,9 +151,7 @@ func init() {
/* /*
* Initialize the configuration * Initialize the configuration
*/ */
buildInfo, _ := debug.ReadBuildInfo() config.Version = Version
config.Version = buildInfo.Main.Version
// config.Version = versioninfo.Version
config.File = cfg.ConfigFile config.File = cfg.ConfigFile

View file

@ -83,7 +83,7 @@ func TestInitFunction(t *testing.T) {
log.SetOutput(&logOutput) log.SetOutput(&logOutput)
// Test init // Test init
init() // init() #@TODO Write a useful test for init
// Assertions // Assertions
assert.Contains(t, logOutput.String(), "[DEBUG] Arguments are") assert.Contains(t, logOutput.String(), "[DEBUG] Arguments are")