HyukjinKwon commented on code in PR #50187: URL: https://github.com/apache/spark/pull/50187#discussion_r1984185390
########## .github/workflows/build_and_test.yml: ########## @@ -1290,3 +1292,35 @@ jobs: cd ui-test npm install --save-dev node --experimental-vm-modules node_modules/.bin/jest + + connect-examples-build: + name: "Build modules: server-library-example" + needs: precondition + if: fromJson(needs.precondition.outputs.required).connect-examples == 'true' + runs-on: ubuntu-latest + steps: + - name: Checkout Spark repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + repository: apache/spark + ref: ${{ inputs.branch }} + + - name: Sync the current branch with the latest in Apache Spark + if: github.repository != 'apache/spark' + run: | + echo "APACHE_SPARK_REF=$(git rev-parse HEAD)" >> $GITHUB_ENV + git fetch https://github.com/$GITHUB_REPOSITORY.git ${GITHUB_REF#refs/heads/} + git -c user.name='Apache Spark Test Account' -c user.email='sparktest...@gmail.com' merge --no-commit --progress --squash FETCH_HEAD + git -c user.name='Apache Spark Test Account' -c user.email='sparktest...@gmail.com' commit -m "Merged commit" --allow-empty + + - name: Set up Java + uses: actions/setup-java@v4 + with: + distribution: zulu + java-version: ${{ inputs.java }} + + - name: Build server-library-example + run: | + cd connect-examples/server-library-example + mvn clean package Review Comment: Can we use `build/sbt` instead? We use SBT in the PR builder -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org