Skip to content

Commit

Permalink
Added binary build workflow CI pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed May 16, 2024
1 parent 5a1145f commit 8055f8e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/binary_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Binary Build CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- uses: actions/setup-go@v4
with:
go-version: '1.21.2'

- name: Install Qrepo
run: sh -c "$(curl -fsSL https://raw.githubusercontent.com/nthnn/Qrepo/master/support/install.sh)"

- name: Install RISC-V GNU toolchain
run: sudo apt install gcc-riscv64-unknown-elf

- name: Build SDK Examples
run: |
qrepo run build-programs

0 comments on commit 8055f8e

Please sign in to comment.