use ninja instead
Some checks failed
Verilator Unit Tests / Test (push) Failing after 4m41s

This commit is contained in:
saji 2024-05-23 00:43:33 -05:00
parent fdca36f9ce
commit 7c7ccf81fc
2 changed files with 6 additions and 3 deletions

View file

@ -12,9 +12,11 @@ jobs:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: |
cmake -B build/
- name: Build Testbench Simulator
run: |
cmake -B build/ -GNinja
cmake --build build/
working-directory: ./sim
- run: ./build/sim
- name: Run Simulator
run: ./build/sim
working-directory: ./sim

View file

@ -61,6 +61,7 @@
# for building the simulator
cmake
ninja
];
};
});