Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ inputs:
build_method:
description: Build method to use (go or bazel)
type: string
default: bazel
default: go
required: false
harbor_registry:
description: Harbor registry to push the images to
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-push-prysm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
options:
- bazel
- go
default: bazel
default: go
required: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion prysm/build_beacon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
go install github.com/bazelbuild/bazelisk@latest
fi

build_method=${build_method:-bazel} # Default to bazel if not set
build_method=${build_method:-go} # Default to go if not set

case ${build_method} in
"go")
Expand Down
6 changes: 5 additions & 1 deletion prysm/build_beacon_minimal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ else
go install github.com/bazelbuild/bazelisk@latest
fi

build_method=${build_method:-bazel} # Default to bazel if not set

# Until this upstream issue (https://github.com/prysmaticlabs/prysm/issues/14703) is resolved, we
# need to build minimal using Bazel.
# build_method=${build_method:-go}
build_method=bazel

case ${build_method} in
"go")
Expand Down
2 changes: 1 addition & 1 deletion prysm/build_validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
go install github.com/bazelbuild/bazelisk@latest
fi

build_method=${build_method:-bazel} # Default to bazel if not set
build_method=${build_method:-go} # Default to go if not set

case ${build_method} in
"go")
Expand Down
5 changes: 4 additions & 1 deletion prysm/build_validator_minimal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ else
go install github.com/bazelbuild/bazelisk@latest
fi

build_method=${build_method:-bazel} # Default to bazel if not set
# Until this upstream issue (https://github.com/prysmaticlabs/prysm/issues/14703) is resolved, we
# need to build minimal using Bazel.
# build_method=${build_method:-go}
build_method=bazel

case ${build_method} in
"go")
Expand Down