Skip to content

Commit

Permalink
ci: try large runner
Browse files Browse the repository at this point in the history
  • Loading branch information
roberts-pumpurs committed Jan 21, 2025
1 parent 9ca4f5f commit cf1c030
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[test-groups]
serial-8080-port = { max-threads = 1 }
serial-test-validator = { max-threads = 1 }
serial-test-validator = { max-threads = 4 }

[[profile.default.overrides]]
filter = 'package(solana-listener)'
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ concurrency:
name: test
jobs:
test:
runs-on: self-hosted
name: test
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions crates/solana-event-forwarder/src/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1496,9 +1496,9 @@ mod tests {
]);

let forced_sleep = if std::env::var("CI").is_ok() {
Duration::from_millis(2500)
Duration::from_millis(1000)
} else {
Duration::from_millis(1500)
Duration::from_millis(500)
};
let mut fixture = TestFixture::new_test_validator(validator, forced_sleep).await;
let init_payer = fixture.payer.insecure_clone();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -723,9 +723,9 @@ pub(crate) mod test {
]);

let forced_sleep = if std::env::var("CI").is_ok() {
Duration::from_millis(2000)
} else {
Duration::from_millis(1000)
} else {
Duration::from_millis(500)
};
let mut fixture = TestFixture::new_test_validator(validator, forced_sleep).await;
let init_payer = fixture.payer.insecure_clone();
Expand Down

0 comments on commit cf1c030

Please sign in to comment.