From c7eb532443ec6028c63e9b13ff0392de2aca06df Mon Sep 17 00:00:00 2001 From: mleku Date: Sat, 1 Nov 2025 13:17:09 +0000 Subject: [PATCH] Update Go build configurations and bump version to v0.21.3 - Commented out unused build commands for different platforms in the GitHub Actions workflow to streamline the build process. - Updated version from v0.21.2 to v0.21.3 to reflect recent changes. --- .github/workflows/go.yml | 8 ++++---- pkg/version/version | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8cd127b..9ec48b8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -76,10 +76,10 @@ jobs: # Build for different platforms GOEXPERIMENT=greenteagc,jsonv2 GOOS=linux GOARCH=amd64 CGO_ENABLED=1 go build -o release-binaries/orly-${VERSION}-linux-amd64 . - GOEXPERIMENT=greenteagc,jsonv2 GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-linux-arm64 . - GOEXPERIMENT=greenteagc,jsonv2 GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-darwin-amd64 . - GOEXPERIMENT=greenteagc,jsonv2 GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-darwin-arm64 . - GOEXPERIMENT=greenteagc,jsonv2 GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-windows-amd64.exe . + # GOEXPERIMENT=greenteagc,jsonv2 GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-linux-arm64 . + # GOEXPERIMENT=greenteagc,jsonv2 GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-darwin-amd64 . + # GOEXPERIMENT=greenteagc,jsonv2 GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-darwin-arm64 . + # GOEXPERIMENT=greenteagc,jsonv2 GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o release-binaries/orly-${VERSION}-windows-amd64.exe . # Note: Only building orly binary as requested # Other cmd utilities (aggregator, benchmark, convert, policytest, stresstest) are development tools diff --git a/pkg/version/version b/pkg/version/version index 172c2f8..6d3004d 100644 --- a/pkg/version/version +++ b/pkg/version/version @@ -1 +1 @@ -v0.21.2 \ No newline at end of file +v0.21.3 \ No newline at end of file