Run binary builds in parallel (#28)

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2022-08-31 12:37:18 +02:00 committed by GitHub
parent fc10b3419d
commit f38f85b3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,25 +14,30 @@ concurrency:
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs: jobs:
build-binaries: build-bootstrapper:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
id: checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Build the bootstrapper - name: Build the bootstrapper
id: build-bootstrapper
uses: ./.github/actions/build_bootstrapper uses: ./.github/actions/build_bootstrapper
build-debugd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Build debugd - name: Build debugd
id: build-debugd
uses: ./.github/actions/build_debugd uses: ./.github/actions/build_debugd
build-disk-mapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Build disk-mapper - name: Build disk-mapper
id: build-disk-mapper
uses: ./.github/actions/build_disk_mapper uses: ./.github/actions/build_disk_mapper
build-cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Build CLI - name: Build CLI
id: build-cli
uses: ./.github/actions/build_cli uses: ./.github/actions/build_cli