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
6 changes: 6 additions & 0 deletions .circleci/continue/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1929,6 +1929,12 @@ jobs:
paths:
- "/go/pkg/mod"
# Store test results and artifacts
- when:
condition: always
steps:
- store_artifacts:
path: ./op-acceptance-tests/results
destination: junit-results
- when:
condition: always
steps:
Expand Down
17 changes: 16 additions & 1 deletion .circleci/continue/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -674,11 +674,26 @@ jobs:
name: Install nextest
command: |
command -v cargo-nextest >/dev/null || cargo binstall --locked --no-confirm cargo-nextest
- run:
name: Prepare test results directory
working_directory: <<parameters.directory>>
command: |
mkdir -p target/nextest/ci
rm -f target/nextest/ci/results.xml
- run:
name: Run cargo tests
working_directory: <<parameters.directory>>
no_output_timeout: 40m
command: just <<parameters.command>> <<parameters.flags>>
command: |
export NEXTEST_PROFILE=ci
just <<parameters.command>> <<parameters.flags>>
- store_artifacts:
path: <<parameters.directory>>/target/nextest/ci
destination: junit-results
when: always
- store_test_results:
path: <<parameters.directory>>/target/nextest/ci
when: always
- rust-save-build-cache: *tests-cache-args

# Shared unused dependencies check job
Expand Down
2 changes: 2 additions & 0 deletions rust/.config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[profile.ci.junit]
path = "results.xml"
Loading