Skip to content

Commit a447ebf

Browse files
committed
ci: Add build test for SDK
Signed-off-by: Yuya Hamamachi <yuya.hamamachi.sx@renesas.com>
1 parent 199769c commit a447ebf

2 files changed

Lines changed: 54 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build test minimal SDK for Sparrow-hawk
2+
run-name: Build test minimal SDK for Sparrow-hawk
3+
on:
4+
push:
5+
branches:
6+
- 'scarthgap'
7+
- '*-dev'
8+
- '*-next'
9+
workflow_dispatch:
10+
11+
jobs:
12+
Release:
13+
name: Release
14+
if: github.repository_owner == 'rcar-community'
15+
runs-on: ubuntu-22.04-arm
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: Setup build envrionment
21+
uses: ./.github/workflows/setup_build_env
22+
23+
- name: Run build
24+
shell: bash
25+
run: |
26+
./build.sh --console --sbom --rm-work --sdk
27+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build test weston SDK for Sparrow-hawk
2+
run-name: Build test weston SDK for Sparrow-hawk
3+
on:
4+
push:
5+
branches:
6+
- 'scarthgap'
7+
- '*-dev'
8+
- '*-next'
9+
workflow_dispatch:
10+
11+
jobs:
12+
Release:
13+
name: Release
14+
if: github.repository_owner == 'rcar-community'
15+
runs-on: ubuntu-22.04-arm
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: Setup build envrionment
21+
uses: ./.github/workflows/setup_build_env
22+
23+
- name: Run build
24+
shell: bash
25+
run: |
26+
./build.sh --weston --sbom --rm-work --sdk
27+

0 commit comments

Comments
 (0)