-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
1,221 additions
and
110 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,6 @@ jobs: | |
with: | ||
crate: cargo-audit | ||
- run: cargo audit --ignore RUSTSEC-2022-0093 --ignore RUSTSEC-2023-0065 --ignore RUSTSEC-2024-0344 | ||
env: | ||
ANCHOR_IDL_BUILD_SKIP_LINT: TRUE | ||
|
||
code_gen: | ||
name: code generation | ||
|
@@ -88,10 +86,7 @@ jobs: | |
- run: cargo sort --workspace --check | ||
- run: cargo fmt --all --check | ||
- run: | | ||
export ANCHOR_IDL_BUILD_SKIP_LINT=true | ||
cargo clippy --all-features -- -D warnings -D clippy::all -D clippy::nursery -D clippy::integer_division -D clippy::arithmetic_side_effects -D clippy::style -D clippy::perf | ||
env: | ||
ANCHOR_IDL_BUILD_SKIP_LINT: true | ||
build: | ||
name: build | ||
|
@@ -112,7 +107,6 @@ jobs: | |
env: | ||
TIP_ROUTER_PROGRAM_ID: ${{ env.TIP_ROUTER_PROGRAM_ID }} | ||
SBF_OUT_DIR: ${{ github.workspace }}/target/sbf-solana-solana/release | ||
ANCHOR_IDL_BUILD_SKIP_LINT: true | ||
- name: Upload MEV Tip Distribution NCN program | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -147,8 +141,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
env: | ||
ANCHOR_IDL_BUILD_SKIP_LINT: true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: aarcangeli/[email protected] | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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,13 @@ | ||
[package] | ||
name = "jito-tip-distribution-sdk" | ||
description = "SDK for interacting with Jito's Tip Distribution Program via declare_program" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
readme = { workspace = true } | ||
|
||
[dependencies] | ||
anchor-lang = { workspace = true } |
Oops, something went wrong.