We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rust-test
I removed this section from ci.yml as part of #94:
ci.yml
rust-test: runs-on: macos-latest steps: - uses: actions/checkout@v4 with: submodules: true - name: Init Hermit uses: cashapp/activate-hermit@v1 with: cache: true - name: Setup run: just setup - name: Install Nextest run: cargo install cargo-nextest - name: Create nextest.toml run: | echo '[profile.ci.junit]' > nextest.toml echo 'path = "junit.xml"' >> nextest.toml echo 'store-success-output = true' >> nextest.toml echo 'store-failure-output = true' >> nextest.toml - name: Run Rust Tests run: | mkdir -p test-results cargo nextest run --profile ci --config-file ./nextest.toml - name: Modify testsuite name in XML for test runner consumption run: | sed -i '' 's/<testsuite name="tbdex"/<testsuite name="TbdexTestVectorsProtocolTest"/' target/nextest/ci/junit.xml - name: Move Test Results run: mv target/nextest/ci/junit.xml test-results/rust-test-results.xml - name: Upload Rust Test Results uses: actions/upload-artifact@v3 with: name: rust-test-results path: test-results/rust-test-results.xml
Determine whether we should put it back :)
The text was updated successfully, but these errors were encountered:
leordev
No branches or pull requests
I removed this section from
ci.yml
as part of #94:Determine whether we should put it back :)
The text was updated successfully, but these errors were encountered: