Skip to content

Commit

Permalink
chore(tests): use 16core enterprise runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon-Becker committed Jun 7, 2024
1 parent 1b93d3f commit 40b0e2c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/heavy-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# If any of the jobs fail, this will create a high-priority issue to signal so.
issue:
name: Open an issue
runs-on: ubuntu-latest
runs-on: ubuntu-16core
needs: heavy-integration
if: ${{ failure() }}
steps:
Expand Down
2 changes: 0 additions & 2 deletions crates/core/tests/test_cfg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ mod integration_tests {
use std::path::PathBuf;

use heimdall_cfg::{cfg, CFGArgs, CFGArgsBuilder};
use heimdall_common::utils::io::file::delete_path;
use petgraph::dot::Dot;
use serde_json::Value;

Expand Down Expand Up @@ -114,7 +113,6 @@ mod integration_tests {
let args = CFGArgsBuilder::new()
.target(bytecode)
.timeout(10000)
.output(String::from("./output/tests/cfg/integration"))
.build()
.expect("failed to build args");

Expand Down
2 changes: 0 additions & 2 deletions crates/core/tests/test_decompile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ mod integration_tests {
use std::path::PathBuf;

use alloy_json_abi::JsonAbi;
use heimdall_common::utils::io::file::delete_path;
use heimdall_decompiler::{decompile, DecompilerArgs, DecompilerArgsBuilder};
use serde_json::Value;

Expand Down Expand Up @@ -215,7 +214,6 @@ mod integration_tests {
.skip_resolving(true)
.include_solidity(true)
.timeout(10000)
.output(String::from("./output/tests/decompile/integration"))
.build()
.expect("failed to build args");

Expand Down
1 change: 0 additions & 1 deletion crates/core/tests/test_disassemble.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
mod integration_tests {
use std::{io::Write, path::PathBuf};

use heimdall_common::utils::io::file::delete_path;
use heimdall_disassembler::{disassemble, DisassemblerArgs, DisassemblerArgsBuilder};
use serde_json::Value;

Expand Down

0 comments on commit 40b0e2c

Please sign in to comment.