[remote-executor] Move overflow check (#837)

* Move overflow check

* Modify workflow
This commit is contained in:
guibescos 2023-05-23 21:06:24 -05:00 committed by GitHub
parent 8eba51d51b
commit 2df32a6108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View File

@ -15,8 +15,9 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: 1.66.1
components: rustfmt, clippy
override: true
- name: Install Solana
run: |
sh -c "$(curl -sSfL https://release.solana.com/stable/install)"

View File

@ -3,3 +3,6 @@ members = [
"programs/*",
"cli/"
]
[profile.release]
overflow-checks = true

View File

@ -16,9 +16,6 @@ cpi = ["no-entrypoint"]
default = []
pythtest = []
[profile.release]
overflow-checks = true
[dependencies]
anchor-lang = {version = "0.25.0", features = ["init-if-needed"]}
wormhole-solana = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana"}