bdemers commented on code in PR #821:
URL: https://github.com/apache/directory-scimple/pull/821#discussion_r2136019742
##########
.github/workflows/build-reproducible.yml:
##########
@@ -50,14 +50,18 @@ jobs:
cache: '' # disabled
- name: Running Maven
- run: ./mvnw install
+ run: ./mvnw install \
+ -Ddevelocity.cache.local.enabled=false \
+ -Ddevelocity.cache.remote.enabled=false
Review Comment:
```suggestion
run: |
./mvnw install \
-Ddevelocity.cache.local.enabled=false \
-Ddevelocity.cache.remote.enabled=false
```
##########
.github/workflows/build-reproducible.yml:
##########
@@ -50,14 +50,18 @@ jobs:
cache: '' # disabled
- name: Running Maven
- run: ./mvnw install
+ run: ./mvnw install \
+ -Ddevelocity.cache.local.enabled=false \
+ -Ddevelocity.cache.remote.enabled=false
env:
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.DIRECTORY_DEVELOCITY_ACCESS_KEY }}
- name: Running Maven again to check reproducibility
- run: ./mvnw clean verify artifact:compare
+ run: ./mvnw clean verify artifact:compare \
+ -Ddevelocity.cache.local.enabled=false \
+ -Ddevelocity.cache.remote.enabled=false
Review Comment:
```suggestion
run: |
./mvnw clean verify artifact:compare \
-Ddevelocity.cache.local.enabled=false \
-Ddevelocity.cache.remote.enabled=false
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]