CI TEST with new action #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and unit test/ Tizen/GBS | |
# ${{ github.event.pull_request.commits }} : # commits in this PR | |
# - changed_file_list in GITHUB_ENV: the list of files updated in this pull-request. | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- aarch: "-A x86_64" | |
option: "--define \"unit_test 1\"" | |
- aarch: "-A i586" | |
option: "--define \"unit_test 1\"" | |
- aarch: "-A armv7l" | |
option: "--define \"unit_test 0\"" | |
- aarch: "-A aarch64" | |
option: "--define \"unit_test 0\"" | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: myungjoo/is_rebuild_required | |
with: | |
build-script: 'gbs' | |
language: 'C,C++' | |
head: ${{ github.event.pull_request.head.sha }} | |
num-commits: -${{ github.event.pull_request.commits }} | |
- name: debugging | |
if: env.rebuild == '0' | |
run: echo "It says NOT to rebuild!" | |
- name: debugging2 | |
if: env.rebuild == '1' | |
run: echo "It says REBUILD!" | |
- name: prepare GBS | |
if: env.rebuild == '1' | |
run: | | |
echo "deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_20.04/ /" | sudo tee /etc/apt/sources.list.d/tizen.list | |
sudo apt-get update && sudo apt-get install -y gbs | |
cp .github/workflows/tizen.gbs.conf ~/.gbs.conf | |
- name: make cache key | |
if: env.rebuild == '1' | |
id: make-key | |
run: echo "cache_key=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: cache gbs cache | |
id: cache-gbs-root | |
if: env.rebuild == '1' | |
uses: actions/cache@v3 | |
with: | |
path: ~/GBS-ROOT/local/cache | |
key: ${{ steps.make-key.outputs.cache_key }} | |
- name: run GBS | |
if: env.rebuild == '1' | |
run: | | |
gbs build --skip-srcrpm --define "_skip_debug_rpm 1" ${{ matrix.aarch }} ${{ matrix.option }} | |
## Skip nntrainer build test in aarch64. @todo We need #2430 and #2431 in nntrainer.git | |
if [[ "${{ matrix.aarch }}" == "-A aarch64" ]]; then | |
echo "rebuild=0" >> "$GITHUB_ENV" | |
fi | |
- name: get nntrainer | |
if: env.rebuild == '1' | |
uses: actions/checkout@v3 | |
with: | |
repository: nnstreamer/nntrainer | |
path: nntrainer | |
- name: run nntrainer GBS build | |
if: env.rebuild == '1' | |
run: | | |
pushd nntrainer | |
gbs build --skip-srcrpm ${{ matrix.aarch }} ${{ matrix.option }} --define "_skip_debug_rpm 1" | |
popd |