Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1220,6 +1220,9 @@ jobs:
- utils/checkout-with-mise
- setup_remote_docker
- run: make -C op-program verify-reproducibility
- store_artifacts:
path: ./op-program/temp/logs
when: always
- notify-failures-on-develop:
mentions: "@proofs-team"

Expand Down
5 changes: 5 additions & 0 deletions op-program/scripts/build-prestates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ do
LOG_FILE="${LOGS_DIR}/build-${SHORT_VERSION}.txt"
echo "Building Version: ${VERSION} Logs: ${LOG_FILE}"
git checkout "${VERSION}" > "${LOG_FILE}" 2>&1
if [ -f mise.toml ]
then
echo "Install dependencies with mise" >> "${LOG_FILE}"
mise install -v -y >> "${LOG_FILE}" 2>&1
fi
rm -rf "${BIN_DIR}"
make reproducible-prestate >> "${LOG_FILE}" 2>&1
HASH=$(cat "${BIN_DIR}/prestate-proof.json" | jq -r .pre)
Expand Down