action: add risc-v test on Ubuntu #4
Workflow file for this run
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: Test RISCV64 on Ubuntu | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build_job: | |
runs-on: ubuntu-20.04 | |
name: Build on Ubuntu 20.04 RISC-V 64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check if rebuild required | |
uses: ./.github/actions/check-rebuild | |
with: | |
mode: rebuild | |
- uses: nnstreamer/run-on-arch-action@master | |
name: Run commands | |
if: env.rebuild == '1' | |
id: Build | |
with: | |
arch: riscv64 | |
distro: ubuntu20.04 | |
githubToken: ${{ github.token }} | |
run: | | |
apt-get -qy update | |
apt-get -qy install meson ninja-build libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libglib2.0-dev libjson-glib-dev gstreamer1.0-tools gstreamer1.0-plugins-base gstreamer1.0-plugins-good libgtest-dev libpng-dev libopencv-dev python3 python3-dev python3-numpy pkg-config gcc g++ liblua5.1-dev bash wget libpng-dev libopenblas-dev cmake | |
bash .github/workflows/get_ssat.sh | |
meson build -Denable-tizen=false -Denable-test=true | |
ninja -C build | |
export NNSTREAMER_CONF=$(pwd)/test/nnstreamer/nnstreamer-test.ini | |
export NNSTREAMER_FILTERS=$(pwd)/build/nnstreamer/tensor_filter | |
export NNSTREAMER_TRAINERS=$(pwd)/build/nnstreamer/tensor_trainer | |
meson test -C build -t 2.0 --print-errorlogs |