From 3f10ce47f04766ee8e87bb94ef0e16c35e3d0fff Mon Sep 17 00:00:00 2001 From: rusdacent <57439765+rusdacent@users.noreply.github.com> Date: Mon, 8 Mar 2021 20:29:44 +0300 Subject: [PATCH] add option -j for make (#372) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdb4087fe..92bb1f306 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Build bootloader in docker uses: ./.github/actions/docker with: - run: make -C bootloader TARGET=${TARGET_VERSION} + run: make -j$(nproc) -C bootloader TARGET=${TARGET_VERSION} - name: Generate dfu file for bootloader uses: ./.github/actions/docker @@ -48,7 +48,7 @@ jobs: - name: Build firmware in docker uses: ./.github/actions/docker with: - run: make -C firmware TARGET=${TARGET_VERSION} APP_RELEASE=1 + run: make -j$(nproc) -C firmware TARGET=${TARGET_VERSION} APP_RELEASE=1 - name: Generate dfu file for firmware uses: ./.github/actions/docker