Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

chore: Use default openssl on github CI and do not fail early on tests #805

Merged
merged 1 commit into from
Feb 8, 2024
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
4 changes: 4 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[profile.default]
fail-fast = true

[profile.ci]
retries = 4
# Terminates test after waiting (`period` * `terminate-after`).
# After timeout, will still retry `retries` times.
slow-timeout = { period = "60s", terminate-after = 3 }
fail-fast = false
4 changes: 3 additions & 1 deletion .github/workflows/run_test_suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
swift test --sanitize=address

run-linting-linux:
continue-on-error: true
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -64,6 +65,7 @@ jobs:

run-rust-test-suite:
name: 'Run Rust test suite'
continue-on-error: true
strategy:
matrix:
features: ['test-kubo,headers', 'test-kubo,headers,rocksdb']
Expand All @@ -89,7 +91,7 @@ jobs:
- name: 'Install environment packages (Windows)'
if: ${{ matrix.platform == 'windows-latest' }}
run: |
choco install -y cmake protoc openssl
choco install -y cmake protoc
shell: sh
- name: 'Install environment packages (Linux)'
if: ${{ matrix.platform == 'ubuntu-latest' }}
Expand Down
Loading