summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rv64.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/rv64.yml b/.github/workflows/rv64.yml
new file mode 100644
index 0000000..e25982b
--- /dev/null
+++ b/.github/workflows/rv64.yml
@@ -0,0 +1,19 @@
+name: FW CI (RV64)
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt update && sudo apt install gcc-riscv64-unknown-elf
+ - name: Build FW (ARM64)
+ run: cd src && cd rv64 && make -f ci.make all \ No newline at end of file