[remote-executor] Move overflow check (#837)
* Move overflow check * Modify workflow
This commit is contained in:
parent
8eba51d51b
commit
2df32a6108
|
@ -15,8 +15,9 @@ jobs:
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: nightly
|
toolchain: 1.66.1
|
||||||
components: rustfmt, clippy
|
components: rustfmt, clippy
|
||||||
|
override: true
|
||||||
- name: Install Solana
|
- name: Install Solana
|
||||||
run: |
|
run: |
|
||||||
sh -c "$(curl -sSfL https://release.solana.com/stable/install)"
|
sh -c "$(curl -sSfL https://release.solana.com/stable/install)"
|
||||||
|
|
|
@ -3,3 +3,6 @@ members = [
|
||||||
"programs/*",
|
"programs/*",
|
||||||
"cli/"
|
"cli/"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
overflow-checks = true
|
||||||
|
|
|
@ -16,9 +16,6 @@ cpi = ["no-entrypoint"]
|
||||||
default = []
|
default = []
|
||||||
pythtest = []
|
pythtest = []
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
overflow-checks = true
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anchor-lang = {version = "0.25.0", features = ["init-if-needed"]}
|
anchor-lang = {version = "0.25.0", features = ["init-if-needed"]}
|
||||||
wormhole-solana = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana"}
|
wormhole-solana = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana"}
|
||||||
|
|
Loading…
Reference in New Issue