Skip to content

Commit

Permalink
github-action/gbs: Build nnstreamer-edge based all architecture
Browse files Browse the repository at this point in the history
 Current, build only x86-64 architecture. This patch is to support
 to build x86_64, i586, armv7l aarch64 architecture

Signed-off-by: linuxias <[email protected]>
  • Loading branch information
linuxias authored and myungjoo committed Feb 28, 2024
1 parent 0085b9d commit 21313d5
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/tizen_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ on:
jobs:
build:

strategy:
matrix:
include:
- aarch: "-A x86_64"
- aarch: "-A i586"
- aarch: "-A armv7l"
- aarch: "-A aarch64"

runs-on: ubuntu-20.04

steps:
Expand All @@ -21,9 +29,12 @@ jobs:
- name: configure GBS
run: cp .github/workflows/tizen.gbs.conf ~/.gbs.conf
- name: run GBS
run: gbs build
run: gbs build ${{ matrix.aarch }}
- name: get nnstreamer-main
run: git clone https://github.com/nnstreamer/nnstreamer.git
- name: run GBS on nnstreamer with unit test
run: pushd nnstreamer && gbs build --define "edge_test 1" && popd
run: |
pushd nnstreamer
gbs build ${{ matrix.aarch }} --define "edge_test 1"
popd
## @todo run nnstreamer-edge related test cases only

0 comments on commit 21313d5

Please sign in to comment.