Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: repair nightly #771

Merged
merged 2 commits into from
Oct 18, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ jobs:

- name: Amend MESSAGE for tests
if: steps.tests.outcome != 'success'
run: echo "MESSAGE=${{ env.MESSAGE }} Exhaustive test run failed in ${{ github.run_id }}" >> $GITHUB_ENV
run: echo "MESSAGE=${{ env.MESSAGE }} Exhaustive test run failed in https://github.com/lurk-lab/lurk-rs/actions/runs/${{ github.run_id }}" >> $GITHUB_ENV

- name: Amend MESSAGE for benches
if: steps.benches.outcome != 'success'
run: echo "MESSAGE=${{ env.MESSAGE }} Bench compilation failed in ${{ github.run_id }}" >> $GITHUB_ENV
run: echo "MESSAGE=${{ env.MESSAGE }} Bench compilation failed in https://github.com/lurk-lab/lurk-rs/actions/runs/${{ github.run_id }}" >> $GITHUB_ENV

- name: Amend MESSAGE for doctests
if: steps.doctests.outcome != 'success'
run: echo "MESSAGE=${{ env.MESSAGE }} Doc test run failed in ${{ github.run_id }}" >> $GITHUB_ENV
run: echo "MESSAGE=${{ env.MESSAGE }} Doc test run failed in https://github.com/lurk-lab/lurk-rs/actions/runs/${{ github.run_id }}" >> $GITHUB_ENV

- name: Find the last report issue open
id: last_issue
Expand Down
4 changes: 2 additions & 2 deletions fcomm/examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ chained-opening.json : chained-function.json chained-input.lurk chained-commitme
cargo run --release open --function chained-function.json --input chained-input.lurk --proof chained-opening.json --chain

chained2-opening chained2-opening.json : chained-input.lurk chained-opening
# NOTE: This concrete commitment (18d939e4cacdcc3c9b3752f84edd34e8455fc83c90b56059f27d79629da46e16) can be found
# NOTE: This concrete commitment (1d52c2a9a97ed0fd4755e89b4310f1edc7d2c0ef3e250c4e5b51dacefc76caf5) can be found
# in chained-opening.json, but its identity is determistic based on the secret and 'second return value' (cdr)
# of the function specified in chained-function.json.
cargo run --release open --commitment 18d939e4cacdcc3c9b3752f84edd34e8455fc83c90b56059f27d79629da46e16 --input chained-input.lurk --proof chained2-opening.json --chain
cargo run --release open --commitment 1d52c2a9a97ed0fd4755e89b4310f1edc7d2c0ef3e250c4e5b51dacefc76caf5 --input chained-input.lurk --proof chained2-opening.json --chain

chained2-from_req-opening chained2-from_req-opening.json : chained2-opening chained-request.json
cargo run --release open --request chained-request.json --proof chained2-from_req-opening.json
2 changes: 1 addition & 1 deletion fcomm/examples/chained-request.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"commitment":"1a25fa00d461d94e16a9be54cc43d9e132043fc938b818d8dd97ea6602a2832a","input":{"expr":{"Source":"9"}},"chain":true}
{"commitment":"1d52c2a9a97ed0fd4755e89b4310f1edc7d2c0ef3e250c4e5b51dacefc76caf5","input":{"expr":{"Source":"9"}},"chain":true}
Loading