-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Philippe Deslauriers <[email protected]>
- Loading branch information
Showing
3 changed files
with
16 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,14 +32,6 @@ pipeline: | |
deps: golang.org/x/[email protected] | ||
modroot: . | ||
|
||
- uses: go/bump | ||
with: | ||
modroot: cmd/acmesolver | ||
|
||
- uses: go/bump | ||
with: | ||
modroot: cmd/cainjector | ||
|
||
- uses: go/bump | ||
with: | ||
deps: golang.org/x/[email protected] | ||
|
@@ -58,6 +50,13 @@ pipeline: | |
# the makefile hardcodes the requirement for some container runtime (CTR), even when we don't need it | ||
# to workaround, set CTR to anything $(command -v)able | ||
- runs: | | ||
# This is needed because the go bumps above affect these packages | ||
for mod in cainjector acmesolver; do | ||
cd cmd/$mod | ||
go mod tidy | ||
cd ../.. | ||
done | ||
make CTR=make _bin/server/controller-linux-$(go env GOARCH) | ||
make CTR=make _bin/server/webhook-linux-$(go env GOARCH) | ||
make CTR=make _bin/server/cainjector-linux-$(go env GOARCH) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,14 +32,6 @@ pipeline: | |
deps: golang.org/x/[email protected] | ||
modroot: . | ||
|
||
- uses: go/bump | ||
with: | ||
modroot: cmd/acmesolver | ||
|
||
- uses: go/bump | ||
with: | ||
modroot: cmd/cainjector | ||
|
||
- uses: go/bump | ||
with: | ||
deps: golang.org/x/[email protected] | ||
|
@@ -58,6 +50,13 @@ pipeline: | |
# the makefile hardcodes the requirement for some container runtime (CTR), even when we don't need it | ||
# to workaround, set CTR to anything $(command -v)able | ||
- runs: | | ||
# This is needed because the go bumps above affect these packages | ||
for mod in cainjector acmesolver; do | ||
cd cmd/$mod | ||
go mod tidy | ||
cd ../.. | ||
done | ||
make CTR=make _bin/server/controller-linux-$(go env GOARCH) | ||
make CTR=make _bin/server/webhook-linux-$(go env GOARCH) | ||
make CTR=make _bin/server/cainjector-linux-$(go env GOARCH) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters