Skip to content

Commit

Permalink
comment out check version
Browse files Browse the repository at this point in the history
  • Loading branch information
xhd2015 committed Mar 30, 2024
1 parent 7bf6b23 commit 4cd4805
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Build Release
run: go run ./script/build-release

- name: Check Version
run: ~/.xgo/bin/xgo revision
# - name: Check Version
# run: ~/.xgo/bin/xgo revision

- name: Check Go Version
run: ~/.xgo/bin/xgo exec go version
# - name: Check Go Version
# run: ~/.xgo/bin/xgo exec go version
4 changes: 2 additions & 2 deletions cmd/xgo/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import "fmt"

const VERSION = "1.0.11"
const REVISION = "4a8ff09872d64a809f7c4e31364094c6b5bc9fe0+1"
const NUMBER = 134
const REVISION = "7bf6b23b31717c85c1486e667c14dce7aa7a28ca+1"
const NUMBER = 135

func getRevision() string {
return fmt.Sprintf("%s %s BUILD_%d", VERSION, REVISION, NUMBER)
Expand Down
4 changes: 2 additions & 2 deletions runtime/core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
)

const VERSION = "1.0.11"
const REVISION = "4a8ff09872d64a809f7c4e31364094c6b5bc9fe0+1"
const NUMBER = 134
const REVISION = "7bf6b23b31717c85c1486e667c14dce7aa7a28ca+1"
const NUMBER = 135

// these fields will be filled by compiler
const XGO_VERSION = ""
Expand Down

0 comments on commit 4cd4805

Please sign in to comment.