Skip to content

Commit

Permalink
Add build-experimental make target
Browse files Browse the repository at this point in the history
This allows use of an "experimental" build tag to
control which code to release, without relying on
branches.
  • Loading branch information
stuart-mclaren-hpe committed Aug 22, 2024
1 parent b4ec890 commit 3c39d34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ jobs:
go-version: ${{ matrix.go }}
- run: go version
- run: make build
- run: make build-experimental
- run: make test
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
build:
go build ./...

build-experimental:
go build -tags experimental ./...

test:
go test ./...

Expand Down

0 comments on commit 3c39d34

Please sign in to comment.