Skip to content
Open
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,15 @@ jobs:
if ! cargo make --version 2>/dev/null; then
cargo install cargo-make --force
fi

# Some integration tests use midenup to compile the example projects
- name: Install midenup
run: |
if ! miden help 2>/dev/null; then
cargo install --git https://github.com/0xMiden/midenup
midenup init
fi
Comment on lines +322 to +327
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Currently, accessing the miden interface requires further intervention by adding some variables to the system's $PATH. This is not ideal for cases like this I believe.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll create an issue on midenup to track this: 0xMiden/midenup#165

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we need it anymore after we switched to using cargo-miden lib for package compilation.


- name: Test
run: |
cargo make test -E 'package(midenc-integration-network-tests)'
Expand Down
Loading
Loading