Skip to content

Commit

Permalink
[github] Introduce gbs build test
Browse files Browse the repository at this point in the history
This commit introduces github workflow for runtime gbs build.

ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <[email protected]>
  • Loading branch information
hseok-oh committed Jul 31, 2024
1 parent e580c67 commit 8d4ffe2
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/run-onert-gbs-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Run ONERT Tizen GBS Build

on:
pull_request:
branches:
- master
- release/*
paths:
- '.github/workflows/run-onert-gbs-build.yml'
- 'nncc'
- 'nnfw'
- 'compiler/luci/**'
- 'compiler/loco/**'
- 'compiler/logo/**'
- 'compute/**'
- 'infra/**'
- '!infra/debian/**'
- '!infra/docker/**'
- '!infra/doxygen/**'
- '!infra/git-hooks/**'
- '!infra/nncc/**'
- '!infra/onert-micro/**'
- '!infra/packaging/**'
- '!infra/scripts/**'
- 'runtime/**'
- 'tests/**'
- '!**.md'

defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Install GBS
run: |
echo 'deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_22.04/ /' | sudo cat >> /etc/apt/sources.list
sudo apt-get update && sudo apt-get -qqy install gbs
- name: Checkout
uses: actions/checkout@v4

- name: Build
run: |
gbs -c infra/nnfw/config/gbs.conf build -A armv7l --profile=profile.tizen_8

0 comments on commit 8d4ffe2

Please sign in to comment.