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
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: run linters
run: make lint-check
- name: Run tests
run: cargo test
- name: Build rops binary
run: cargo build --release
- name: Upload artifact (binary)
Expand All @@ -37,6 +39,8 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install GCC for arm64
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Run tests
run: cargo test
- name: Build rops binary for arm64
run: rustup target add aarch64-unknown-linux-gnu && cargo build --release --target aarch64-unknown-linux-gnu
- name: Upload artifact (binary for arm64)
Expand Down
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@readme.md
Loading
Loading