From f38f85b3bf3de6f774bc48288720484f25b2b784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= <66256922+daniel-weisse@users.noreply.github.com> Date: Wed, 31 Aug 2022 12:37:18 +0200 Subject: [PATCH] Run binary builds in parallel (#28) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- .github/workflows/build-binaries.yml | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index b1db34f8c..b69e1f854 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -14,25 +14,30 @@ concurrency: cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} jobs: - build-binaries: + build-bootstrapper: runs-on: ubuntu-latest steps: - - name: Checkout - id: checkout - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Build the bootstrapper - id: build-bootstrapper uses: ./.github/actions/build_bootstrapper - + + build-debugd: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Build debugd - id: build-debugd uses: ./.github/actions/build_debugd - + + build-disk-mapper: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Build disk-mapper - id: build-disk-mapper uses: ./.github/actions/build_disk_mapper + build-cli: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Build CLI - id: build-cli uses: ./.github/actions/build_cli