Skip to content

Commit

Permalink
Divide build-binaries job to multiple jobs per platform (#2757)
Browse files Browse the repository at this point in the history
* Divide build-binaries job to multiple jobs per platform

Signed-off-by: Ashmita Bohara <[email protected]>

* Feedbacks

Signed-off-by: Ashmita Bohara <[email protected]>
  • Loading branch information
Ashmita152 authored Feb 1, 2021
1 parent 0d54da7 commit e677384
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci-build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@ on:
jobs:
build-binaries:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- name: linux
task: build-binaries-linux
- name: windows
task: build-binaries-windows
- name: osx
task: build-binaries-darwin
- name: system/390
task: build-binaries-s390x
- name: arm
task: build-binaries-arm64
- name: powerpc
task: build-binaries-ppc64le
name: build binaries for ${{ matrix.platform.name }}
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -29,4 +45,4 @@ jobs:
run: make install-ci

- name: Build binaries
run: make build-all-platforms
run: make ${{ matrix.platform.task }}

0 comments on commit e677384

Please sign in to comment.