Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: build

on:
push:
branches: [main]
branches: [main, develop]
paths-ignore:
- "docs/"
- "**.md"
pull_request:
branches: [main]
branches: [main, develop]
paths-ignore:
- "docs/"
- "**.md"
Expand All @@ -22,10 +22,10 @@ jobs:

matrix:
# Run the pipeline on all the currently supported OS versions
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]

# Run the pipeline on all the currently supported LTS versions and the upcoming version
node-version: [10, 12, 14, 16]
node-version: [18, 19]

# Run the pipeline on all the currently supported architectures
architecture: [x64]
Expand Down
2 changes: 1 addition & 1 deletion test/graph/SolidityCFGFactory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract MetaCoin {
const cfg = factory.convertAST(ast);
expect(cfg.edges.length === 12);
expect(cfg.nodes.length === 11);
console.log(cfg);
// console.log(cfg);

// drawGraph(cfg, "./temp/graph.svg");
// expect(statement != null);
Expand Down
4 changes: 3 additions & 1 deletion test/testcase/AddressStatement.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ describe("AddressStatement", () => {
await guessCWD(null);
await setupOptions("", []);
await loadConfig();
await processConfig({}, "");
await processConfig({
"target_root_directory": ""
}, "");
await setupLogger();
});

Expand Down
4 changes: 3 additions & 1 deletion test/testcase/primitive/String.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ describe("StringStatement", () => {
await guessCWD(null);
await setupOptions("", []);
await loadConfig();
await processConfig({}, "");
await processConfig({
"target_root_directory": ""
}, "");
await setupLogger();
});

Expand Down