Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test fix #27

Closed
wants to merge 1 commit into from
Closed
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
28 changes: 14 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]

env:
RUSTDOCFLAGS: -Dwarnings
RUSTFLAGS: -Dwarnings
# RUSTFLAGS: -Dwarnings

jobs:
test:
Expand All @@ -18,13 +18,13 @@ jobs:
rust: nightly
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: arm-unknown-linux-gnueabi
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: arm-unknown-linux-gnueabihf
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: i586-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
Expand All @@ -47,28 +47,28 @@ jobs:
# rust: nightly
- target: powerpc-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: powerpc64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: powerpc64le-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: sbf-solana-solana
os: ubuntu-latest
rust: nightly
- target: thumbv6m-none-eabi
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: thumbv7em-none-eabi
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: thumbv7em-none-eabihf
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: thumbv7m-none-eabi
os: ubuntu-latest
rust: nightly
rust: nightly-2024-05-17
- target: wasm32-unknown-unknown
os: ubuntu-latest
rust: nightly
Expand All @@ -83,13 +83,13 @@ jobs:
rust: nightly
- target: x86_64-pc-windows-msvc
os: windows-latest
rust: nightly
rust: nightly-2024-05-17
- target: i686-pc-windows-gnu
os: windows-latest
rust: nightly-i686-gnu
rust: nightly-2024-05-17-i686-gnu
- target: x86_64-pc-windows-gnu
os: windows-latest
rust: nightly-x86_64-gnu
rust: nightly-2024-05-17-x86_64-gnu
steps:
- name: Print runner information
run: uname -a
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,6 @@ panic = 'abort'

[profile.dev]
panic = 'abort'

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_family, values("solana"))', 'cfg(target_feature, values("static-syscalls"))', 'cfg(target_os, values("solana"))'] }
Loading