summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-04-02 15:35:19 +0200
committerGitHub <noreply@github.com>2025-04-02 15:35:19 +0200
commitab54bcd5bee32eeb5e182ffff4e8bb187e875aa0 (patch)
treee7505b27850201450eb3528006c440638f1241ce /.github/workflows
parentf42ce43556475acb576fa926f685128d1dccf64b (diff)
parenta113f91c6be56c3f39fc7680ec7f5c814d4d2c27 (diff)
Merge pull request #2 from amlel-el-mahrouss/dev
add: rv64 CI, and copyright updates.
Diffstat (limited to '.github/workflows')
-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