| #!/bin/bash -e |
| |
| . set-java.sh --branch "{branch}" |
| |
| if [ -n "{repo}" ]; then |
| SRC_DIR={repo} |
| else |
| SRC_DIR={name} |
| fi |
| |
| echo "Building plugin {name} with Gerrit on {branch} from plugins/$SRC_DIR" |
| |
| git checkout -fb {branch} gerrit/{branch} |
| git submodule update --init |
| rm -rf plugins/{name} |
| git read-tree -u --prefix=plugins/$SRC_DIR origin/{branch} |
| git fetch --tags origin |
| |
| if [ -n "{repo}" ] && [ -n "{sourcePath}" ]; then |
| echo "Linking '{repo}/{sourcePath}' to 'plugins/{name}'" |
| pushd plugins && ln -s {repo}/{sourcePath} . && popd |
| fi |
| |
| for file in external_plugin_deps.bzl external_package.json |
| do |
| if [ -f plugins/{name}/$file ] |
| then |
| cp -f plugins/{name}/$file plugins/ |
| fi |
| done |
| |
| PLUGIN_SCM_BASE_URL="https://gerrit.googlesource.com/a" |
| for extraPlugin in {extra-plugins} |
| do |
| pushd .. |
| git clone -b {branch} $PLUGIN_SCM_BASE_URL/plugins/$extraPlugin |
| popd |
| pushd plugins |
| ln -s ../../$extraPlugin . |
| popd |
| done |
| for extraModule in {extra-modules} |
| do |
| pushd .. |
| git clone -b {branch} $PLUGIN_SCM_BASE_URL/modules/$extraModule |
| popd |
| pushd plugins |
| ln -s ../../$extraModule . |
| popd |
| done |
| |
| TARGETS=$(echo "{targets}" | sed -e 's/{{name}}/{name}/g') |
| |
| java -fullversion |
| bazelisk version |
| |
| if test "{setup}" != "" |
| then |
| echo "Running setup script ..." |
| bash -c "{setup}" |
| fi |
| |
| if [ "{branch}" == "stable-3.11" ]; then |
| BAZEL_OPTS="$BAZEL_OPTS --config=java21" |
| echo -e "Build stable-3.11 on java21. BAZEL_OPTS = $BAZEL_OPTS" |
| fi |
| |
| bazelisk build $BAZEL_OPTS $TARGETS |
| bazelisk test $BAZEL_OPTS --test_env DOCKER_HOST=$DOCKER_HOST //tools/bzl:always_pass_test plugins/{name}/... |
| |
| for JAR in $(find bazel-bin/plugins/{name} -maxdepth 1 -name {name}*.jar) |
| do |
| PLUGIN_VERSION=$(git describe --always origin/{branch}) |
| echo -e "Implementation-Version: $PLUGIN_VERSION" > MANIFEST.MF |
| jar ufm $JAR MANIFEST.MF && rm MANIFEST.MF |
| DEST_JAR=bazel-bin/plugins/{name}/$(basename $JAR) |
| [ "$JAR" -ef "$DEST_JAR" ] || mv $JAR $DEST_JAR |
| echo "$PLUGIN_VERSION" > bazel-bin/plugins/{name}/$(basename $JAR-version) |
| done |
| |
| for JS in $(find bazel-bin/plugins/{name} -maxdepth 1 -name {name}*.js) |
| do |
| PLUGIN_VERSION=$(git describe --always origin/{branch}) |
| echo "$PLUGIN_VERSION" > bazel-bin/plugins/{name}/$(basename $JS-version) |
| done |