summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorJiuyang Liu2021-07-29 11:06:15 +0800
committerJiuyang Liu2021-08-18 12:56:05 +0800
commit886d60ca6412a017ad345e3ce346eefe383c4a7e (patch)
treef99f54fe2beb2d0a7443a13e23ac4009b56f19db /.github/workflows/test.yml
parent5f550b606d47d04b7ee60976cdb18a51c391992c (diff)
switch to ninja
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index b2620d2f..94a30f12 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -45,13 +45,14 @@ jobs:
mkdir -p build
cd build
cmake .. \
+ -GNinja \
-DCMAKE_BUILD_TYPE=Release \
-DZ3_LINK_TIME_OPTIMIZATION=1
- make
+ ninja
- name: Install Z3 ${{ matrix.z3 }}
run: |
cd z3-z3-${{ matrix.z3 }}/build
- sudo make install
+ sudo ninja install
z3 --version
- name: Cache Verilator ${{ matrix.verilator }}