Skip to content

Commit 6954c27

Browse files
committed
Win test
1 parent 322e80a commit 6954c27

File tree

2 files changed

+4
-4
lines changed
  • .github/workflows
  • crates/compilers/src/preprocessor

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
24+
os: ["windows-latest"]
2525
rust: ["stable", "1.83"]
2626
flags: ["", "--all-features"]
2727
exclude:

crates/compilers/src/preprocessor/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ impl Preprocessor<SolcCompiler> for TestOptimizerPreprocessor {
102102
// Collect data of source contracts referenced in tests and scripts.
103103
let data = collect_preprocessor_data(&sess, hir, &deps.referenced_contracts);
104104

105-
// Extend existing sources with preprocessor deploy helper sources.
106-
sources.extend(create_deploy_helpers(&data));
107-
108105
// Generate and apply preprocessor source updates.
109106
apply_updates(sources, remove_bytecode_dependencies(hir, &deps, &data));
107+
108+
// Extend existing sources with preprocessor deploy helper sources.
109+
sources.extend(create_deploy_helpers(&data));
110110
}
111111

112112
Ok(())

0 commit comments

Comments
 (0)