diff options
-rw-r--r-- | .cirrus.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index a64b5b76..10865c7b 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -2,10 +2,10 @@ task: name: build-test-ubuntu1604 container: cpu: 4 - memory: 12 + memory: 16 dockerfile: .cirrus/Dockerfile.ubuntu16.04 build_script: mkdir build && cd build && cmake .. -DARCH=all -DTRELLIS_ROOT=/usr/local/src/prjtrellis -DBUILD_TESTS=on && make -j $(nproc) - test_generic_script: ./nextpnr-generic-test - test_ice40_script: ./nextpnr-ice40-test - test_ecp5_script: ./nextpnr-ecp5-test + test_generic_script: cd build && ./nextpnr-generic-test + test_ice40_script: cd build && ./nextpnr-ice40-test + test_ecp5_script: cd build && ./nextpnr-ecp5-test |