-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add a composite action for library generation (#3173)
In this PR: - Add a composite action to execute library generation shell script. - Separate repo specific logic, e.g., installing modules, building images, etc., in the generation shell script. An example workflow in google-cloud-java: googleapis/google-cloud-java#11117
- Loading branch information
1 parent
7996aab
commit 593e2f0
Showing
4 changed files
with
105 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Copyright 2024 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 | ||
# | ||
# 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. | ||
# GitHub action job to test core java library features on | ||
# downstream client libraries before they are released. | ||
|
||
# This composite action should be used in google-cloud-java and handwritten | ||
# libraries to generate changed libraries. | ||
# This composite action serves as a source of truth of scripts that run | ||
# library generation and create pull requests. | ||
name: Hermetic library generation | ||
description: Runs hermetic library generation to produce changed libraries | ||
inputs: | ||
base_ref: | ||
description: base branch | ||
required: true | ||
head_ref: | ||
description: head branch | ||
required: true | ||
image_tag: | ||
description: the tag of hermetic build image | ||
required: false | ||
token: | ||
description: Personal Access Token | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Copy shell script | ||
shell: bash | ||
run: | | ||
cd ${{ github.action_path }} | ||
cp hermetic_library_generation.sh $GITHUB_WORKSPACE | ||
- name: Generate changed libraries | ||
shell: bash | ||
run: | | ||
set -x | ||
[ -z "$(git config user.email)" ] && git config --global user.email "[email protected]" | ||
[ -z "$(git config user.name)" ] && git config --global user.name "cloud-java-bot" | ||
cd "${GITHUB_WORKSPACE}" | ||
bash hermetic_library_generation.sh \ | ||
--target_branch "${BASE_REF}" \ | ||
--current_branch "${HEAD_REF}" \ | ||
--image_tag "${IMAGE_TAG}" | ||
env: | ||
BASE_REF: ${{ inputs.base_ref }} | ||
HEAD_REF: ${{ inputs.head_ref }} | ||
IMAGE_TAG: ${{ inputs.image_tag }} | ||
GH_TOKEN: ${{ inputs.token }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,24 +24,41 @@ jobs: | |
library_generation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Determine whether the pull request comes from a fork | ||
run: | | ||
if [[ "${GITHUB_REPOSITORY}" != "${REPO_FULL_NAME}" ]]; then | ||
echo "This PR comes from a fork. Skip library generation." | ||
echo "SHOULD_RUN=false" >> $GITHUB_ENV | ||
else | ||
echo "SHOULD_RUN=true" >> $GITHUB_ENV | ||
fi | ||
- uses: actions/checkout@v4 | ||
if: env.SHOULD_RUN == 'true' | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }} | ||
- name: Generate changed libraries | ||
- name: Install Maven modules | ||
if: env.SHOULD_RUN == 'true' | ||
shell: bash | ||
run: | | ||
set -x | ||
if [[ "${GITHUB_REPOSITORY}" != "${REPO_FULL_NAME}" ]]; then | ||
echo "This PR comes from a fork. Skip library generation." | ||
exit 0 | ||
fi | ||
[ -z "$(git config user.email)" ] && git config --global user.email "[email protected]" | ||
[ -z "$(git config user.name)" ] && git config --global user.name "cloud-java-bot" | ||
bash .github/scripts/hermetic_library_generation.sh \ | ||
--target_branch "${base_ref}" \ | ||
--current_branch "${head_ref}" | ||
git checkout "${HEAD_REF}" | ||
mvn install -B -ntp -DskipTests -Dclirr.skip -Dcheckstyle.skip | ||
env: | ||
HEAD_REF: ${{ github.head_ref }} | ||
- name: Build image | ||
if: env.SHOULD_RUN == 'true' | ||
shell: bash | ||
run: | | ||
GENERATOR_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout -pl gapic-generator-java) | ||
echo "GENERATOR_VERSION=${GENERATOR_VERSION}" >> "$GITHUB_ENV" | ||
docker build \ | ||
-f .cloudbuild/library_generation/library_generation.Dockerfile \ | ||
-t gcr.io/cloud-devrel-public-resources/java-library-generation:"${GENERATOR_VERSION}" \ | ||
. | ||
- uses: ./.github/scripts | ||
if: env.SHOULD_RUN == 'true' | ||
with: | ||
base_ref: ${{ github.base_ref }} | ||
head_ref: ${{ github.head_ref }} | ||
GH_TOKEN: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }} | ||
image_tag: ${{ env.GENERATOR_VERSION }} | ||
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }} |