Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/add-nodetime
Browse files Browse the repository at this point in the history
# Conflicts:
#	go.sum
#	go.work
  • Loading branch information
Pantani authored and Pantani committed Sep 7, 2023
2 parents a531e20 + 380ddc0 commit 5ca69f2
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gex/data.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package gex

// Binary returns the compressed platform specific Hermes binary.
func Binary() []byte {
return binaryCompressed
}
6 changes: 6 additions & 0 deletions gex/data_darwin_amd64.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package gex

import _ "embed" // embed is required for binary embedding.

//go:embed gex-v1.3.0-amd64-darwin.tar.gz
var binaryCompressed []byte
6 changes: 6 additions & 0 deletions gex/data_darwin_arm64.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package gex

import _ "embed" // embed is required for binary embedding.

//go:embed gex-v1.3.0-arm64-darwin.tar.gz
var binaryCompressed []byte
6 changes: 6 additions & 0 deletions gex/data_linux_amd64.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package gex

import _ "embed" // embed is required for binary embedding.

//go:embed gex-v1.3.0-amd64-linux.tar.gz
var binaryCompressed []byte
6 changes: 6 additions & 0 deletions gex/data_linux_arm64.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package gex

import _ "embed" // embed is required for binary embedding.

//go:embed gex-v1.3.0-arm64-linux.tar.gz
var binaryCompressed []byte
Binary file added gex/gex-v1.3.0-amd64-darwin.tar.gz
Binary file not shown.
Binary file added gex/gex-v1.3.0-amd64-linux.tar.gz
Binary file not shown.
Binary file added gex/gex-v1.3.0-arm64-darwin.tar.gz
Binary file not shown.
Binary file added gex/gex-v1.3.0-arm64-linux.tar.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions gex/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/ignite/ignite-files/gex

go 1.21.0
1 change: 1 addition & 0 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ go 1.21
use (
./hermes
./nodetime
./gex
)

0 comments on commit 5ca69f2

Please sign in to comment.