-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial setup for Rust code * Port CICKind to Rust * Literal port of python code for checksum * Write tests for calculateChecksum * Port detect * Cleanup CICKind * Wire up function bindings * yeet python logic * Add name attribute * Start fixing CI * ci for rust * cargo fmt * clippy * changelog and readme * some docs * fmt * fix ci?
- Loading branch information
1 parent
84d8640
commit 5d005ea
Showing
24 changed files
with
1,105 additions
and
329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Build and upload Rust crate | ||
|
||
# Build on every branch push, tag push, and pull request change: | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_rust: | ||
name: Build Rust stuff and run Rust tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout reposistory | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Rust toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Check format | ||
run: cargo fmt --check | ||
|
||
- name: Setup clippy | ||
run: rustup component add clippy | ||
|
||
- name: Run clippy | ||
run: cargo clippy --all-targets --all-features -- -D warnings | ||
|
||
- name: Build Rust package | ||
run: cargo build --release --workspace | ||
|
||
- name: Build Rust tests | ||
run: cargo test --workspace | ||
|
||
- name: Publish dry run | ||
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') | ||
run: cargo publish --dry-run | ||
|
||
- name: Upload crate | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | ||
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"rust-analyzer.cargo.features": [ | ||
"c_bindings", | ||
"python_bindings" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.