mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-22 16:00:05 -05:00
Run binary builds in parallel (#28)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
fc10b3419d
commit
f38f85b3bf
27
.github/workflows/build-binaries.yml
vendored
27
.github/workflows/build-binaries.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user