jamesnetherton commented on code in PR #23984:
URL: https://github.com/apache/camel/pull/23984#discussion_r3402071540
##########
.github/workflows/main-build.yml:
##########
@@ -51,6 +51,18 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
+ - name: Get Atlassian dependency version
+ id: atlassian-version
+ run: |
+ JIRA_VERSION=$(./mvnw help:evaluate
-Dexpression=jira-rest-client.version -q -DforceStdout -N)
Review Comment:
```suggestion
JIRA_VERSION=$(./mvnw help:evaluate
-Dexpression=jira-rest-client-api-version -q -DforceStdout -N)
```
##########
.github/workflows/pr-build-main.yml:
##########
@@ -90,6 +90,18 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
+ - name: Get Atlassian dependency version
+ id: atlassian-version
+ run: |
+ JIRA_VERSION=$(./mvnw help:evaluate
-Dexpression=jira-rest-client.version -q -DforceStdout -N)
Review Comment:
```suggestion
JIRA_VERSION=$(./mvnw help:evaluate
-Dexpression=jira-rest-client-api-version -q -DforceStdout -N)
```
##########
.github/workflows/main-build.yml:
##########
@@ -59,6 +71,27 @@ jobs:
with:
name: main-build-${{ matrix.java }}.log
path: build.log
+ - name: Tar Maven Repo
+ shell: bash
+ run: |
+ tar -I 'zstd -T0' -cf ${{ runner.temp }}/maven-repo.tar.zst -C ~
.m2/repository
+ ls -lh ${{ runner.temp }}/maven-repo.tar.zst
+ df -h /
+ - name: Persist Maven Repo
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
# v7.0.1
+ with:
+ name: maven-repo
+ path: ${{ runner.temp }}/maven-repo.tar.zst
+ retention-days: 1
Review Comment:
We don't need these steps for the Camel core. It's just for CQ because we
have a ton of concurrent jobs.
--
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]