Skip to content
Snippets Groups Projects
Unverified Commit ebcf2f39 authored by Silas Davis's avatar Silas Davis
Browse files

ensure check and build included in pre-release CI jobs

parent a8f7163a
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,13 @@ jobs:
at: .
- run: make test_integration
build:
<<: *defaults
steps:
- attach_workspace:
at: .
- run: make build
release:
<<: *defaults
steps:
......@@ -77,10 +84,17 @@ workflows:
filters:
<<: *tags_filters
- build:
requires:
- checkout_code
filters:
<<: *tags_filters
- release:
requires:
- test
- test_integration
- build
filters:
# tags filters and branch filters are applied disjunctively, so we
# will still build tags not on develop (i.e. including tagged
......
......@@ -121,7 +121,7 @@ build_race_client:
# test burrow
.PHONY: test
test:
test: check
@go test ${PACKAGES_NOVENDOR}
.PHONY: test_integration
......
......@@ -93,7 +93,7 @@ func (v *VersionIdentifier) GetMinorVersionString() string {
}
// Return the plain version string without the ClientIdentifier
func GetSemanticVersionString() string { return burrowVersion.GetSemanticVersionString() }
func GetSemanticVersionString() string { return burrowVersion.GetSemanticVersionString() }
func (v *VersionIdentifier) GetSemanticVersionString() string {
return fmt.Sprintf("%d.%d.%d", v.MajorVersion,
v.MinorVersion, v.PatchVersion)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment