-
Notifications
You must be signed in to change notification settings - Fork 283
ci: install irohad with features
#5354
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,14 +102,16 @@ jobs: | |
| run: | | ||
| mv ${{ env.WASM_TARGET_DIR }}/libs ${{ env.DEFAULTS_DIR }}/libs | ||
| mv ${{ env.DEFAULTS_DIR }}/libs/default_executor.wasm ${{ env.DEFAULTS_DIR }}/executor.wasm | ||
| - name: Install irohad | ||
| run: which irohad || cargo install --path crates/irohad --locked | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By the way, what is the possible cases that
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I remember, it was about caching and the possibility that |
||
| - name: Install irohad with no default features | ||
| run: cargo install --path crates/irohad --locked --no-default-features | ||
| - name: Test with no default features | ||
| id: test_no_features | ||
| run: > | ||
| mold --run cargo llvm-cov nextest | ||
| --no-default-features | ||
| --branch --no-report | ||
| - name: Install irohad with all features | ||
| run: cargo install --path crates/irohad --locked --all-features | ||
| - name: Test with all features | ||
| id: test_all_features | ||
| run: > | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.