Skip to content

Commit

Permalink
Add workflow to auto-update codegen
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
(cherry picked from commit 082594f)
  • Loading branch information
Xtansia committed Jul 3, 2024
1 parent a8aa97b commit b6e82e5
Show file tree
Hide file tree
Showing 5 changed files with 1,067 additions and 925 deletions.
62 changes: 56 additions & 6 deletions .github/workflows/code-generation.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
name: Code Generation

on: [pull_request]
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1' # 00:00 UTC Weekly on Mondays

env:
is_opensearch_repo: ${{ github.repository == 'opensearch-project/opensearch-java' }}
is_schedule: ${{ github.event_name == 'schedule' }}
update_to_latest: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}

jobs:
up_to_date:
name: Ensure Generated Code Up To Date
if: env.is_schedule != 'true' || env.is_opensearch_repo == 'true'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout Java Client
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up JDK
uses: actions/setup-java@v4
Expand All @@ -17,18 +32,53 @@ jobs:
distribution: 'temurin'
cache: 'gradle'

- name: Download Latest Spec
if: env.update_to_latest == 'true'
run: ./gradlew :java-codegen:downloadLatestSpec

- name: Run Code Generator
run: ./gradlew clean :java-codegen:run
run: ./gradlew :java-codegen:run

- name: Check Has No Changes
- name: Git Status
id: status
shell: bash -eo pipefail {0}
run: |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
output=$(git status --porcelain)
if [ -z "$output" ]; then
echo "Clean working directory"
exit 0
echo "clean=true" >> $GITHUB_OUTPUT
else
echo "Dirty working directory"
echo "$output"
exit 1
fi
echo "clean=false" >> $GITHUB_OUTPUT
fi
- name: Fail On Uncommitted Changes
if: env.update_to_latest != 'true' && steps.status.outputs.clean != 'true'
run: exit 1

- name: Generate GitHub App Token
if: env.is_opensearch_repo == 'true' && env.update_to_latest == 'true' && steps.status.outputs.clean != 'true'
id: github_app_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
installation_id: 22958780

- name: Create Pull Request
if: env.update_to_latest == 'true' && steps.status.outputs.clean != 'true'
uses: peter-evans/create-pull-request@v6
with:
token: ${{ steps.github_app_token.outputs.token || secrets.GITHUB_TOKEN }}
commit-message: Re-generate client code using latest OpenSearch API specification (${{ steps.status.outputs.date }})
title: Re-generated client code using latest OpenSearch API specification
body: |
Re-generated client code using latest OpenSearch API specification.
Date: ${{ steps.status.outputs.date }}
branch: code-gen/${{ github.ref_name }}/update
signoff: true
labels: |
autocut
11 changes: 10 additions & 1 deletion java-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import com.github.jk1.license.ProjectData
import com.github.jk1.license.render.ReportRenderer
import de.undercouch.gradle.tasks.download.Download
import java.io.FileWriter

buildscript {
Expand All @@ -32,6 +33,7 @@ plugins {
id("com.github.jk1.dependency-license-report") version "2.8"
id("org.owasp.dependencycheck") version "9.2.0"
id("com.diffplug.spotless") version "6.25.0"
id("de.undercouch.download") version "5.6.0"
}
apply(plugin = "opensearch.repositories")
apply(plugin = "org.owasp.dependencycheck")
Expand Down Expand Up @@ -66,9 +68,16 @@ application {
)
}

val localSpecification = "$projectDir/opensearch-openapi.yaml"

tasks.create<Download>("downloadLatestSpec") {
src("https://github.com/opensearch-project/opensearch-api-specification/releases/download/main-latest/opensearch-openapi.yaml")
dest(localSpecification)
}

tasks.named<JavaExec>("run") {
args = listOf(
"--input", "$projectDir/opensearch-openapi.yaml",
"--input", localSpecification,
"--eclipse-config", "$rootDir/buildSrc/formatterConfig-generated.xml",
"--output", "${project(":java-client").projectDir}/src/generated/java/"
)
Expand Down
Loading

0 comments on commit b6e82e5

Please sign in to comment.