jamesnetherton commented on code in PR #8257:
URL: https://github.com/apache/camel-quarkus/pull/8257#discussion_r2772831776


##########
.github/workflows/ci-semeru-jdk.yaml:
##########
@@ -0,0 +1,444 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You 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.
+#
+
+name: Semeru JDK Testing
+
+on:
+  schedule:
+    # Run every sunday at 0 AM
+    - cron:  '0 0 * * SUN'
+  workflow_dispatch:
+
+concurrency:
+  group: ${{ github.ref }}-${{ github.workflow }}
+  cancel-in-progress: true
+
+env:
+  LANG: en_US.UTF-8
+  MAVEN_OPTS: -Xmx3000m
+  CQ_MAVEN_ARGS: -V -ntp -e -Daether.connector.http.connectionMaxTtl=120
+  TESTCONTAINERS_RYUK_DISABLED: true
+  CHECKOUT_REF: ${{ github.event_name == 'pull_request' && 
github.event.pull_request.user.login == 'dependabot[bot]' && github.head_ref || 
'' }}
+
+jobs:
+  pre-build-checks:
+    if: github.repository == 'apache/camel-quarkus'
+    runs-on: ubuntu-latest
+    outputs:
+      continue-build: ${{ steps.pre-build-checks.outputs.continue-build }}
+      run-checks: ${{ steps.init.outputs.run-checks }}
+    steps:
+      - name: Initialize
+        id: init
+        run: |
+          if [[ "${{ github.event_name }}" == "pull_request" ]] && [[ "${{ 
github.event.pull_request.user.login }}" == "dependabot[bot]" ]]; then
+            echo "run-checks=true" >> $GITHUB_OUTPUT
+          else
+            echo "run-checks=false" >> $GITHUB_OUTPUT
+          fi
+      - name: Set up Semeru JDK 21
+        uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # 
v5.2.0
+        if: steps.init.outputs.run-checks == 'true'
+        with:
+          distribution: 'semeru'
+          java-version: '21'
+      - name: Checkout
+        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 
v6.0.2
+        if: steps.init.outputs.run-checks == 'true'
+        with:
+          ref: ${{ env.CHECKOUT_REF }}
+          fetch-depth: 0
+      - name: Pre build checks
+        id: pre-build-checks
+        run: |
+          if [[ "${{ steps.init.outputs.run-checks }}" == "true" ]]; then
+            ./mvnw cq:sync-versions -N ${CQ_MAVEN_ARGS}
+            ./mvnw clean install -pl poms/bom -am -Dcq.flatten-bom.format 
--fail-never ${CQ_MAVEN_ARGS}
+            ./mvnw clean install -f poms/bom ${CQ_MAVEN_ARGS}
+            ./mvnw clean validate -pl docs ${CQ_MAVEN_ARGS}
+
+            if [[ -z "$(git status --porcelain)" ]]; then
+              echo "continue-build=true" >> $GITHUB_OUTPUT
+            else
+              mkdir ./dependabot-pr
+              echo ${{ github.head_ref }} > ./dependabot-pr/BRANCH_REF
+              echo ${{ github.event.pull_request.head.sha }} > 
./dependabot-pr/PR_HEAD_SHA
+              echo "$GITHUB_REF" | awk -F / '{print $3}' >  
./dependabot-pr/PR_NUMBER
+              git diff -p --binary > ./dependabot-pr/changes.patch
+
+              echo "continue-build=false" >> $GITHUB_OUTPUT
+            fi
+          else
+            echo "continue-build=true" >> $GITHUB_OUTPUT
+          fi
+      - name: Upload dependabot changeset
+        uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f 
# v6.0.0
+        if: steps.pre-build-checks.outputs.continue-build == 'false'
+        with:
+          name: dependabot-pr-changeset
+          path: dependabot-pr/
+          retention-days: 1
+
+  initial-mvn-install:
+    if: needs.pre-build-checks.outputs.continue-build == 'true'
+    runs-on: ubuntu-latest
+    needs: pre-build-checks
+    outputs:
+      matrix: ${{ steps.set-native-matrix.outputs.matrix }}
+      examples-matrix: ${{ steps.set-examples-matrix.outputs.examples-matrix }}
+      alternate-jvm-matrix: ${{ 
steps.set-alternate-jvm-matrix.outputs.alternate-jvm-matrix }}
+    env:
+      MAVEN_OPTS: -Xmx4600m
+    steps:
+      - name: Check free space on disk
+        run: |
+          df -h /
+      - name: Set up Semeru 21
+        uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # 
v5.2.0
+        with:
+          distribution: 'semeru'
+          java-version: '21'
+      - name: Build Camel
+        if: github.ref == 'refs/heads/camel-main' || github.base_ref == 
'camel-main'
+        run: |
+          cd ../
+          git clone --depth 1 --branch main 
https://github.com/apache/camel.git \
+            && cd camel \
+            && echo "Current Camel commit:" $(git rev-parse HEAD) \
+            && ./mvnw ${CQ_MAVEN_ARGS} clean install -Dquickly -T1C
+      - name: Build Quarkus
+        if: github.ref == 'refs/heads/quarkus-main' || github.base_ref == 
'quarkus-main'
+        run: |
+          git clone --depth 1 --branch main 
https://github.com/quarkusio/quarkus.git \
+            && cd quarkus \
+            && echo "Current Quarkus commit:" $(git rev-parse HEAD) \
+            && sed -i '/<module>integration-tests<\/module>/d' pom.xml \
+            && ./mvnw ${CQ_MAVEN_ARGS} clean install -Dquickly -Prelocations 
-T1C
+      - name: Checkout
+        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 
v6.0.2
+        with:
+          ref: ${{ env.CHECKOUT_REF }}
+          fetch-depth: 0
+      - name: Update extension metadata
+        run: |
+          ./mvnw -N cq:update-quarkus-metadata ${CQ_MAVEN_ARGS}
+      - name: mvn clean install -DskipTests
+        run: |
+          eval ./mvnw ${CQ_MAVEN_ARGS} ${BRANCH_OPTIONS} clean install 
-DskipTests -Dquarkus.build.skip -Pformat
+      - name: Sync Maven properties
+        run: |
+          ./mvnw cq:sync-versions ${CQ_MAVEN_ARGS} -N
+      - name: Fail if there are uncommitted changes
+        shell: bash
+        run: |
+          [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 
'There are uncommitted changes'; git status; git diff; exit 1; }
+      - name: Tar Maven Repo
+        shell: bash
+        run: |
+          tar -czf ${{ runner.temp }}/maven-repo.tgz -C ~ .m2/repository
+          ls -lh ${{ runner.temp }}/maven-repo.tgz
+          df -h /
+      - name: Persist Maven Repo
+        uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f 
# v6.0.0
+        with:
+          name: maven-repo
+          path: ${{ runner.temp }}/maven-repo.tgz
+          retention-days: 1
+      - name: Setup Native Test Matrix
+        id: set-native-matrix
+        run: |
+          CATEGORIES=$(yq -M -N -I 0 -o=json e 'keys' 
tooling/scripts/test-categories.yaml | tr '"' "'")
+          echo "matrix={'category': ${CATEGORIES}}" >> $GITHUB_OUTPUT

Review Comment:
   I just realised that we should put this step back:
   
   
https://github.com/apache/camel-quarkus/blob/main/.github/workflows/ci-build.yaml#L248-L326
   
   And remove the native profile trigger:
   
   
https://github.com/apache/camel-quarkus/blob/main/.github/workflows/ci-build.yaml#L314
   
   Otherwise we don't run the core set of integration tests in JVM mode.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to