Skip to content

Commit

Permalink
Update ckb-std dependencies and fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
joii2020 committed Oct 27, 2024
1 parent b7c9e5c commit 6edc68c
Show file tree
Hide file tree
Showing 4 changed files with 260 additions and 66 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Cargo build
run: cargo build

- name: Install llvm 18
run: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 18 && rm llvm.sh
- name: Install riscv64 target
run: rustup target add riscv64imac-unknown-none-elf
- name: Run Cargo Test
run: cargo test
- name: Run Cargo clippy
run: cargo clippy --all
- name: Run Test
run: cd tests && make default
Loading

0 comments on commit 6edc68c

Please sign in to comment.