Skip to content

vin_ivps_venc_rtsp:200ai #4

vin_ivps_venc_rtsp:200ai

vin_ivps_venc_rtsp:200ai #4

# This is a basic workflow to help you get started with Actions
name: build_arm_uclibc
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "zero"]
pull_request:
branches: [ "main", "zero"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Runs a set of commands using the runners shell
- name: prepare third-party
run: |
wget https://github.com/AXERA-TECH/ax620q_bsp_sdk/releases/download/v2.0.0/third-party.tar.gz
tar zxvf third-party.tar.gz
- name: prepare gcc and build
run: |
wget https://github.com/AXERA-TECH/ax620q_bsp_sdk/releases/download/v2.0.0/arm-AX620E-linux-uclibcgnueabihf_V3_20240320.tgz
tar zxvf arm-AX620E-linux-uclibcgnueabihf_V3_20240320.tgz
export PATH=$PATH:$PWD/arm-AX620E-linux-uclibcgnueabihf/bin/
arm-AX620E-linux-uclibcgnueabihf-gcc -v
make -C msp/sample/ p=AX620Q_nand_arm32_k419 -j16