Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
bazel/src/create_java_tools_release.sh at master · AppliedIntuition/bazel · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
AppliedIntuition
/
bazel
Public
forked from
bazelbuild/bazel
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
bazel
/
src
/
create_java_tools_release.sh
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
149 lines (128 loc) · 6.43 KB
master
Breadcrumbs
bazel
/
src
/
create_java_tools_release.sh
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
149 lines (128 loc) · 6.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!
/bin/bash
#
Copyright 2019 The Bazel Authors. All rights reserved.
#
#
Licensed under the Apache License, Version 2.0 (the "License");
#
you may not use this file except in compliance with the License.
#
You may obtain a copy of the License at
#
#
http://www.apache.org/licenses/LICENSE-2.0
#
#
Unless required by applicable law or agreed to in writing, software
#
distributed under the License is distributed on an "AS IS" BASIS,
#
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#
See the License for the specific language governing permissions and
#
limitations under the License.
#
A script that creates java_tools release candidates or release artifacts.
#
#
Before creating a release candidate the script assumes that the java_tools
#
binaries pipeline was previously run and generated java_tools artifacts at
#
a commit hash.
#
#
The script is using gsutil to copy artifacts.
#
#
Mandatory flags:
#
--java_tools_version The version number of the java_tools to be released.
#
--rc The release candidate number of current release.
#
If --release true then --rc is the number of the rc to
#
be released.
#
If --release false then --rc is the number of the rc to
#
be created.
#
--release "true" if the script has to create the release artifact
#
or "false" if the script has to create a release
#
candidate.
#
--commit_hash The commit hash where the java_tools binaries pipeline
#
was run. Mandatory only if --release false.
#
#
Usage examples:
#
#
To create the first release candidate for a new java_tools version 2.1 and
#
JDK11, that was built at commit_hash 123456:
#
#
src/create_java_tools_release.sh --commit_hash 123456 \
#
--java_tools_version 2.1 --rc 1 --release false
#
#
To release the release candidate created above:
#
#
src/create_java_tools_release.sh \
#
--java_tools_version 2.1 --rc 1 --release true
set
-euo pipefail
#
Parsing the flags.
while
[[
-n
"
$@
"
]]
;
do
arg=
"
$1
"
;
shift
val=
"
$1
"
;
shift
case
"
$arg
"
in
"
--java_tools_version
"
) java_tools_version=
"
$val
"
;;
"
--commit_hash
"
) commit_hash=
"
$val
"
;;
"
--rc
"
) rc=
"
$val
"
;;
"
--release
"
) release=
"
$val
"
;;
*
)
echo
"
Flag
$arg
is not recognized.
"
&&
exit
1 ;;
esac
done
#
Create a tmp directory to download the artifacts from GCS and compute their
#
sha256sum.
tmp_dir=
$(
mktemp -d -t
'
tmp_bazel_zip_files_XXXXXX
'
)
trap
"
rm -fr
$tmp_dir
"
EXIT
gcs_bucket=
"
gs://bazel-mirror/bazel_java_tools
"
mirror_prefix=
"
https://mirror.bazel.build/bazel_java_tools
"
github_prefix=
"
https://github.com/bazelbuild/java_tools/releases/download
"
for
platform
in
"
linux
"
"
windows
"
"
darwin_x86_64
"
"
darwin_arm64
"
;
do
rc_url=
"
release_candidates/java/v
${java_tools_version}
/java_tools_
${platform}
-v
${java_tools_version}
-rc
${rc}
.zip
"
if
[[
$release
==
"
true
"
]]
;
then
release_artifact=
"
releases/java/v
${java_tools_version}
/java_tools_
${platform}
-v
${java_tools_version}
.zip
"
#
Make release candidate the release artifact for the current platform.
#
Don't overwrite existing file.
gsutil -q cp -n
"
${gcs_bucket}
/
${rc_url}
"
"
${gcs_bucket}
/
${release_artifact}
"
github_url=
"
${github_prefix}
/java_v
${java_tools_version}
/java_tools_
${platform}
-v
${java_tools_version}
.zip
"
mirror_url=
${mirror_prefix}
/
${release_artifact}
urls=
'
"mirror_url" : "
'
${mirror_url}
'
", "github_url" : "
'
${github_url}
'
"
'
else
tmp_url=
$(
gsutil ls -lh
${gcs_bucket}
/tmp/build/
${commit_hash}
/java/java_tools_
${platform}
*
|
sort -k 2
|
grep gs -m 1
|
awk
'
{print $4}
'
)
#
Make the generated artifact a release candidate for the current platform.
#
Don't overwrite existing file.
gsutil -q cp -n
${tmp_url}
"
${gcs_bucket}
/
${rc_url}
"
mirror_url=
${mirror_prefix}
/
${rc_url}
urls=
'
"mirror_url" : "
'
${mirror_url}
'
"
'
fi
#
Download the file locally to compute its sha256sum (needed to update the
#
java_tools in Bazel).
#
Don't overwrite existing file.
local_zip=
"
$tmp_dir
/java_tools
$platform
.zip
"
gsutil -q cp -n
${gcs_bucket}
/
${rc_url}
${local_zip}
file_hash=
$(
sha256sum
${local_zip}
|
cut -d
'
'
-f1
)
platform_output+=
'
"java_tools_
'
${platform}
'
" : {
'
${urls}
'
, "sha": "
'
${file_hash}
'
"},
'
done
rc_url=
"
release_candidates/java/v
${java_tools_version}
/java_tools-v
${java_tools_version}
-rc
${rc}
.zip
"
rc_sources_url=
"
release_candidates/java/v
${java_tools_version}
/sources/java_tools-v
${java_tools_version}
-rc
${rc}
.zip
"
if
[[
$release
==
"
true
"
]]
;
then
release_artifact=
"
releases/java/v
${java_tools_version}
/java_tools-v
${java_tools_version}
.zip
"
release_sources_artifact=
"
releases/java/v
${java_tools_version}
/sources/java_tools-v
${java_tools_version}
.zip
"
#
Make release candidate the release artifact for the current platform.
#
Don't overwrite existing file.
gsutil -q cp -n
"
${gcs_bucket}
/
${rc_url}
"
"
${gcs_bucket}
/
${release_artifact}
"
#
Copy the associated zip file that contains the sources of the release zip.
#
Don't overwrite existing file.
gsutil -q cp -n
"
${gcs_bucket}
/
${rc_sources_url}
"
"
${gcs_bucket}
/
${release_sources_artifact}
"
github_url=
"
${github_prefix}
/java_v
${java_tools_version}
/java_tools-v
${java_tools_version}
.zip
"
mirror_url=
${mirror_prefix}
/
${release_artifact}
urls=
'
"mirror_url" : "
'
${mirror_url}
'
", "github_url" : "
'
${github_url}
'
"
'
else
tmp_url=
$(
gsutil ls -lh
${gcs_bucket}
/tmp/build/
${commit_hash}
/java/java_tools-
*
|
sort -k 2
|
grep gs -m 1
|
awk
'
{print $4}
'
)
gsutil -q cp -n
${tmp_url}
"
${gcs_bucket}
/
${rc_url}
"
#
Copy the associated zip file that contains the sources of the release zip.
#
Don't overwrite existing file.
tmp_sources_url=
$(
gsutil ls -lh
${gcs_bucket}
/tmp/sources/
${commit_hash}
/java/java_tools-
*
|
sort -k 2
|
grep gs -m 1
|
awk
'
{print $4}
'
)
gsutil -q cp -n
${tmp_sources_url}
${gcs_bucket}
/
${rc_sources_url}
mirror_url=
${mirror_prefix}
/
${rc_url}
urls=
'
"mirror_url" : "
'
${mirror_url}
'
"
'
fi
#
Download the file locally to compute its sha256sum (needed to update the
#
java_tools in Bazel).
#
Don't overwrite existing file.
local_zip=
"
$tmp_dir
/java_tools.zip
"
gsutil -q cp -n
${gcs_bucket}
/
${rc_url}
${local_zip}
file_hash=
$(
sha256sum
${local_zip}
|
cut -d
'
'
-f1
)
java_tools_output=
'
"java_tools" : {
'
${urls}
'
, "sha" : "
'
${file_hash}
'
"}
'
artifacts=
'
"artifacts" : {
'
${platform_output}
'
'
${java_tools_output}
'
}
'
version=
'
"version" : "v
'
${java_tools_version}
'
"
'
release=
'
"release" : "
'
${release}
'
"
'
echo
"
{
${version}
,
${release}
,
${artifacts}
}
"
|
jq
You can’t perform that action at this time.