Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ jobs:
permissions:
security-events: write
contents: read
packages: read
uses: FyraLabs/actions/.github/workflows/rust.yml@main
with:
test-pre: sudo apt-get update && sudo apt-get install -y protobuf-compiler
test-cache: true
test-riscv-rva23: true
test-riscv-builder-image: ghcr.io/fyralabs/rva23-builder@sha256:206d17485eb31e7b7aaad2fc8563471e71e0815574e15dd1328b97fc56696827

test-riscv-artifact-name: odorobo-riscv-rva23
test-riscv-artifact-paths: |
target/riscv64a23-unknown-linux-gnu/release/odorobo
target/riscv64a23-unknown-linux-gnu/release/odoroboctl
2 changes: 1 addition & 1 deletion scripts/zig-cc-rva23.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail
args=()
for arg in "$@"; do
case "$arg" in
--target=riscv64-unknown-linux-gnu)
--target=riscv64-unknown-linux-gnu|--target=riscv64a23-unknown-linux-gnu)
;;
*)
args+=("$arg")
Expand Down