Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github-action/gbs: Build nnstreamer-edge based all architecture #201

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading