NNStreamer + NNTrainer gbs build daily test. #179
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: Update GBS cache once a day | |
on: | |
schedule: | |
# 05:00 AM (KST) Mon-Fri | |
- cron: "00 20 * * 0-4" | |
# Allow manually triggering the workflow | |
workflow_dispatch: | |
jobs: | |
cache_gbs_build: | |
strategy: | |
matrix: | |
gbs_build_arch: [x86_64, i586, armv7l, aarch64] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v1 | |
- name: prepare deb sources for GBS | |
run: echo "deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_22.04/ /" | sudo tee /etc/apt/sources.list.d/tizen.list | |
- name: install GBS | |
run: sudo apt-get update && sudo apt-get install -y gbs | |
- name: configure GBS | |
run: cp .github/workflows/tizen.gbs.conf ~/.gbs.conf | |
- name: get date | |
id: get-date | |
run: | | |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- name: run GBS | |
run: gbs build --skip-srcrpm --define "_skip_debug_rpm 1" -A ${{ matrix.gbs_build_arch }} | |
- name: save gbs cache | |
uses: actions/cache/save@v4 | |
if: always() | |
with: | |
path: ~/GBS-ROOT/local/cache | |
key: gbs-cache-${{ matrix.gbs_build_arch }}-${{ steps.get-date.outputs.date }} |