Skip to content

Commit

Permalink
multi job
Browse files Browse the repository at this point in the history
  • Loading branch information
asac committed Aug 6, 2024
1 parent 8d76c53 commit 703820f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/actions/kas-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ inputs:
command: # command
description: 'command'
required: false
config-dir: # command
description: 'bitbake arguments'
required: false
bitbake-args: # command
description: 'bitbake arguments'
required: false
Expand Down
38 changes: 37 additions & 1 deletion .github/workflows/onpush.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,48 @@ on:
push:

jobs:
build-bsp:
build-remix-sunxi:
runs-on: ["self-hosted"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Kas
uses: ./.github/actions/kas-build
id: build-kas
with:
target: "pantavisor-remix"
config-dir: ".github/configs/sunxi"
build-bsp-sunxi:
runs-on: ["self-hosted"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Kas
uses: ./.github/actions/kas-build
id: build-kas
with:
target: "pantavisor-bsp"
config-dir: ".github/configs/sunxi"
build-remix-nxp:
runs-on: ["self-hosted"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Kas
uses: ./.github/actions/kas-build
id: build-kas
with:
target: "pantavisor-remix"
config-dir: ".github/configs/nxp"
build-bsp-nxp:
runs-on: ["self-hosted"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Kas
uses: ./.github/actions/kas-build
id: build-kas
with:
target: "pantavisor-bsp"
config-dir: ".github/configs/nxp"

0 comments on commit 703820f

Please sign in to comment.