raulcd commented on code in PR #48148:
URL: https://github.com/apache/arrow/pull/48148#discussion_r3264379556
##########
.github/workflows/package_linux.yml:
##########
@@ -235,24 +245,35 @@ jobs:
dev/release/utils-watch-gh-workflow.sh \
${GITHUB_REF_NAME} \
release_candidate.yml
+ - name: Verify Reproducibility
+ if: env.TASK_NAMESPACE == 'apt'
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ rake -C dev/tasks/linux-packages docker:pull || :
+ # Validate reproducibility. Reprotest runs the build twice
+ # inside its own tempdir and doesn't copy artifacts back,
+ # so this is purely a verification step.
+ reprotest \
+ --vary=-fileordering \
+ --build-command \
+ "rake -C dev/tasks/linux-packages ${TASK_NAMESPACE}:build" \
+ "${PWD}" \
+
"dev/tasks/linux-packages/*/apt/repositories/${DISTRIBUTION}/pool/${DISTRIBUTION_CODE_NAME}/*/*/*/*.deb"
Review Comment:
That makes absolute sense, I was thinking the same the other day that we
probably want to push this after the "real build".
--
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]