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

[SOL] Fix ci #25

Closed
wants to merge 2 commits 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
120 changes: 60 additions & 60 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ jobs:
fail-fast: false
matrix:
include:
- target: aarch64-apple-darwin
os: macos-14
rust: nightly
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
- target: arm-unknown-linux-gnueabi
os: ubuntu-latest
rust: nightly
- target: arm-unknown-linux-gnueabihf
os: ubuntu-latest
rust: nightly
- target: i586-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
- target: i686-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
#- target: aarch64-apple-darwin
# os: macos-14
# rust: nightly
#- target: aarch64-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
#- target: arm-unknown-linux-gnueabi
# os: ubuntu-latest
# rust: nightly
#- target: arm-unknown-linux-gnueabihf
# os: ubuntu-latest
# rust: nightly
#- target: i586-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
#- target: i686-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
# MIPS targets disabled since they are dropped to tier 3.
# See https://github.com/rust-lang/compiler-team/issues/648
#- target: mips-unknown-linux-gnu
Expand All @@ -45,51 +45,51 @@ jobs:
#- target: mipsel-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
- target: powerpc-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
- target: powerpc64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
- target: powerpc64le-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
#- target: powerpc-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
#- target: powerpc64-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
#- target: powerpc64le-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
- target: sbf-solana-solana
os: ubuntu-latest
rust: nightly
- target: thumbv6m-none-eabi
os: ubuntu-latest
rust: nightly
- target: thumbv7em-none-eabi
os: ubuntu-latest
rust: nightly
- target: thumbv7em-none-eabihf
os: ubuntu-latest
rust: nightly
- target: thumbv7m-none-eabi
os: ubuntu-latest
rust: nightly
- target: wasm32-unknown-unknown
os: ubuntu-latest
rust: nightly
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
- target: x86_64-apple-darwin
os: macos-latest
rust: nightly
- target: i686-pc-windows-msvc
os: windows-latest
rust: nightly
- target: x86_64-pc-windows-msvc
os: windows-latest
rust: nightly
- target: i686-pc-windows-gnu
os: windows-latest
rust: nightly-i686-gnu
- target: x86_64-pc-windows-gnu
os: windows-latest
rust: nightly-x86_64-gnu
#- target: thumbv6m-none-eabi
# os: ubuntu-latest
# rust: nightly
#- target: thumbv7em-none-eabi
# os: ubuntu-latest
# rust: nightly
#- target: thumbv7em-none-eabihf
# os: ubuntu-latest
# rust: nightly
#- target: thumbv7m-none-eabi
# os: ubuntu-latest
# rust: nightly
#- target: wasm32-unknown-unknown
# os: ubuntu-latest
# rust: nightly
#- target: x86_64-unknown-linux-gnu
# os: ubuntu-latest
# rust: nightly
#- target: x86_64-apple-darwin
# os: macos-latest
# rust: nightly
#- target: i686-pc-windows-msvc
# os: windows-latest
# rust: nightly
#- target: x86_64-pc-windows-msvc
# os: windows-latest
# rust: nightly
#- target: i686-pc-windows-gnu
# os: windows-latest
# rust: nightly-i686-gnu
#- target: x86_64-pc-windows-gnu
# os: windows-latest
# rust: nightly-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