Skip to content

Commit

Permalink
EVEREST-107 update everest-operator build (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
recharte authored Dec 3, 2024
1 parent b65af8e commit 50a9724
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
mkdir -p $TOOLS_PATH
echo $TOOLS_PATH >> $GITHUB_PATH
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.25.2
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.38.0
curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH}
gpg --keyserver keyserver.ubuntu.com --recv-keys 052996E2A20B5C7E
Expand Down
4 changes: 2 additions & 2 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ local_resource(
# Build the Everest operator manager locally to take advantage of the go cache
local_resource(
'operator-build',
'make -C %s fmt; CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -C %s -o ./bin/manager ./main.go' % (operator_dir, operator_dir),
deps=['%s/api' % operator_dir, '%s/controllers' % operator_dir, '%s/main.go' % operator_dir],
'make -C %s fmt; CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -C %s -o ./bin/manager ./cmd/main.go' % (operator_dir, operator_dir),
deps=['%s/api' % operator_dir, '%s/controllers' % operator_dir, '%s/cmd/main.go' % operator_dir],
labels=["everest-operator"]
)

Expand Down

0 comments on commit 50a9724

Please sign in to comment.