Skip to content

Commit

Permalink
Merge pull request #117 from jpower432/feat/collection-update
Browse files Browse the repository at this point in the history
feat: modifies collection manifest to incorporate base attributes
  • Loading branch information
Alex Flom authored Jan 12, 2023
2 parents 3734626 + e367fc4 commit fb73d05
Show file tree
Hide file tree
Showing 79 changed files with 3,036 additions and 1,605 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ sha256sum.txt
**/test-output
client-workspace
dataset-config.yaml
*query.yaml


# Logs.
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ EXECUTABLE_NAME := "uor-client-go"
GIT_COMMIT := $(or $(SOURCE_GIT_COMMIT),$(shell git rev-parse --short HEAD))
GIT_TAG :="$(shell git tag | sort -V | tail -1)"

GO_LD_EXTRAFLAGS :=-X github.com/uor-framework/uor-client-go/cmd/client/commands.version="$(shell git tag | sort -V | tail -1)" \
-X github.com/uor-framework/uor-client-go/cmd/client/commands.buildData="dev" \
-X github.com/uor-framework/uor-client-go/cmd/client/commands.commit="$(GIT_COMMIT)" \
-X github.com/uor-framework/uor-client-go/cmd/client/commands.buildDate="$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')"
GO_LD_EXTRAFLAGS :=-X github.com/uor-framework/uor-client-go/version.version="$(shell git tag | sort -V | tail -1)" \
-X github.com/uor-framework/uor-client-go/version.buildData="dev" \
-X github.com/uor-framework/uor-client-go/version.commit="$(GIT_COMMIT)" \
-X github.com/uor-framework/uor-client-go/version.buildDate="$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')"

build: prep-build-dir
$(GO) build -o $(GO_BUILD_BINDIR)/$(EXECUTABLE_NAME) -ldflags="$(GO_LD_EXTRAFLAGS)" $(GO_BUILD_PACKAGES)
Expand Down
Loading

0 comments on commit fb73d05

Please sign in to comment.