ci: Add -j to make

This commit is contained in:
Fam Zheng 2024-12-20 20:48:11 +00:00
parent eb52691b39
commit 028541291e

View File

@ -18,8 +18,8 @@ test:
- env - env
- pip3 install -r requirements.txt - pip3 install -r requirements.txt
script: script:
- make opencv - make opencv -j$(nproc --ignore=2)
- make -C alg qrtool - make -C alg qrtool -j$(nproc --ignore=2)
- make test - make test
build-alg: build-alg:
@ -27,8 +27,8 @@ build-alg:
tags: tags:
- emblem-dev - emblem-dev
script: script:
- make opencv - make opencv -j$(nproc --ignore=2)
- make build/alg/qrtool - make build/alg/qrtool -j$(nproc --ignore=2)
artifacts: artifacts:
paths: paths:
- build - build