Skip to content

Commit 37a429a

Browse files
philwocopybara-github
authored andcommitted
Fix dangling reference to bazel.fish.
This was changed in bazelbuild@20febac, but we forgot to update this reference. We only noticed this when trying to build the next release, because in the normal postsubmit the installer isn't built. This CL also adds the release artifacts to the CI config so this cannot happen again. PiperOrigin-RevId: 343119629
1 parent ddcf5f7 commit 37a429a

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.bazelci/postsubmit.yml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ tasks:
1111
- "--test_env=TEST_INSTALL_BASE=$HOME/bazeltest/install_base"
1212
- "--test_env=TEST_REPOSITORY_HOME=$OUTPUT_BASE/external"
1313
build_targets:
14+
- "//:bazel-distfile.zip"
15+
- "//scripts/packages/debian:bazel-debian.deb"
16+
- "//scripts/packages:with-jdk/install.sh"
1417
- "//src:bazel"
1518
- "//src:bazel_jdk_minimal"
1619
- "//src:test_repos"

.bazelci/presubmit.yml

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ tasks:
1212
- "--test_env=TEST_INSTALL_BASE=$HOME/bazeltest/install_base"
1313
- "--test_env=TEST_REPOSITORY_HOME=$OUTPUT_BASE/external"
1414
build_targets:
15+
- "//:bazel-distfile.zip"
16+
- "//scripts/packages/debian:bazel-debian.deb"
17+
- "//scripts/packages:with-jdk/install.sh"
1518
- "//src:bazel"
1619
- "//src:bazel_jdk_minimal"
1720
- "//src:test_repos"

scripts/packages/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ genrule(
125125
":%s/bazel-real" % kind,
126126
":%s/bazel" % kind,
127127
"//scripts:bash_completion",
128-
"//scripts/fish:completions/bazel.fish",
128+
"//scripts:bazel.fish",
129129
"//scripts/zsh_completion:_bazel",
130130
],
131131
launcher = ":launcher_bin.sh",

0 commit comments

Comments
 (0)