From: Yongjoo Ahn Date: Thu, 2 Nov 2023 01:20:41 +0000 (+0900) Subject: [action] Gbs build with `_skip_debug_rpm` and `--skip-srcrpm` X-Git-Tag: accepted/tizen/unified/20231110.172147~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e50e7630952914227b0e68694781211c63b7aeeb;p=platform%2Fupstream%2Fnnstreamer.git [action] Gbs build with `_skip_debug_rpm` and `--skip-srcrpm` - Let gbs build do not make debug rpms and skip srcrpm - This will save some seconds.. Signed-off-by: Yongjoo Ahn --- diff --git a/.github/workflows/gbs_x64.yml b/.github/workflows/gbs_x64.yml index f25c1c8..adf0f8c 100644 --- a/.github/workflows/gbs_x64.yml +++ b/.github/workflows/gbs_x64.yml @@ -31,11 +31,11 @@ jobs: path: ~/GBS-ROOT/local/cache key: ${{ steps.make-key.outputs.cache_key }} - name: run GBS - run: gbs build + run: gbs build --skip-srcrpm --define "_skip_debug_rpm 1" - name: get nntrainer uses: actions/checkout@v3 with: repository: nnstreamer/nntrainer path: nntrainer - name: run nntrainer GBS build - run: pushd nntrainer && gbs build --define "unit_test 1" && popd + run: pushd nntrainer && gbs build --skip-srcrpm --define "unit_test 1" --define "_skip_debug_rpm 1" && popd