-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathentrypoint.sh
executable file
·97 lines (89 loc) · 3.01 KB
/
entrypoint.sh
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
#!/bin/bash
# Copyright 2021 Google LLC
#
# 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
#
# https://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.
set -e
# Runs template and etc in current working directory
function processModule() {
# templates
echo "Generating templates..."
/owlbot/bin/write_templates.sh
echo "...done"
# write or restore pom.xml files
echo "Generating missing pom.xml..."
/owlbot/bin/write_missing_pom_files.sh
echo "...done"
# write or restore clirr-ignored-differences.xml
echo "Generating clirr-ignored-differences.xml..."
/owlbot/bin/write_clirr_ignore.sh
echo "...done"
# fix license headers
echo "Fixing missing license headers..."
/owlbot/bin/fix_license_headers.sh
echo "...done"
# TODO: re-enable this once we resolve thrashing
# restore license headers years
# echo "Restoring copyright years..."
# /owlbot/bin/restore_license_headers.sh
# echo "...done"
# ensure formatting on all .java files in the repository
echo "Reformatting source..."
/owlbot/bin/format_source.sh
echo "...done"
}
if [ "$(ls */.OwlBot.yaml|wc -l)" -gt 1 ];then
# Monorepo (googleapis/google-cloud-java) has multiple OwlBot.yaml config
# files in the modules.
echo "Processing monorepo"
if [ -d owl-bot-staging ]; then
# The content of owl-bot-staging is controlled by Owlbot.yaml files in
# each module in the monorepo
echo "Extracting contents from owl-bot-staging"
for module in $(ls owl-bot-staging); do
if [ ! -d "$module" ]; then
continue
fi
# This relocation allows us continue to use owlbot.py without modification
# after monorepo migration.
mv "owl-bot-staging/$module" "$module/owl-bot-staging"
pushd "$module"
processModule
popd
done
rm -r owl-bot-staging
else
echo "In monorepo but no owl-bot-staging." \
"Formatting changes in the last commit"
# Find the files that were touched by the last commit.
last_commit=$(git log -1 --format=%H)
# [A]dded, [C]reated, [M]odified, and [R]enamed
changed_files=$(git show --name-only --no-renames --diff-filter=ACMR \
"${last_commit}")
changed_modules=$(echo "$changed_files" |grep -E '.java$' |cut -d '/' -f 1 \
|sort -u)
for module in ${changed_modules}; do
if [ ! -f "$module/.OwlBot.yaml" ]; then
# Changes irrelevant to Owlbot-generated module (such as .github) do not
# need formatting
continue
fi
pushd "$module"
processModule
popd
done
fi
else
# Split repository
echo "Processing a split repo"
processModule
fi