Skip to content

Commit

Permalink
Correctly name of artifacts for the release
Browse files Browse the repository at this point in the history
Fixes bazelbuild#101

Change-Id: I0b0af821a617b4924ccfba17793387eed6fd2a7e
  • Loading branch information
damienmg authored and joeleba committed Jun 17, 2019
1 parent e3382ca commit 805c622
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions jenkins/jobs/configs/bootstrap.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"parameters": {
"archive": {
"bazel-bin/src/bazel": "bazel",
"bazel-bin/scripts/packages/with-jdk/install.sh": "bazel-%{release_name}-darwin-x86_64-installer.sh",
"bazel-bin/scripts/packages/without-jdk/install.sh": "bazel-%{release_name}-darwin-x86_64-without-jdk-installer.sh"
"bazel-bin/scripts/packages/with-jdk/install.sh": "bazel-%{release_name}-installer-darwin-x86_64.sh",
"bazel-bin/scripts/packages/without-jdk/install.sh": "bazel-%{release_name}-without-jdk-installer-darwin-x86_64.sh"
},
"targets": [
"//scripts/packages"
Expand All @@ -63,8 +63,14 @@
"node": "windows-x86_64",
"parameters": {
"archive": {
"bazel-bin/src/bazel": ["bazel.exe", "bazel-%{release_name}-windows-x86_64.exe"]
"bazel-bin/src/bazel": ["bazel.exe", "bazel-%{release_name}-without-jdk-windows-x86_64.exe"],
"bazel-bin/src/bazel_with_jdk": "bazel-%{release_name}-windows-x86_64.exe",
"bazel-genfiles/scripts/packages/bazel.zip": "bazel-%{release_name}-without-jdk-windows-x86_64.zip",
"bazel-genfiles/scripts/packages/bazel_with_jdk.zip": "bazel-%{release_name}-windows-x86_64.zip"
},
"targets": [
"//scripts/packages"
],
"opts": [
"--copt=-w",
"--host_copt=-w",
Expand Down

0 comments on commit 805c622

Please sign in to comment.