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*
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

View file

@ -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

View file

@ -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")