Skip to content

Commit 30dda2c

Browse files
committed
Merge #705: Fix ci
33a1893 Upgrade cross image for windows (Martin Habovstiak) 24e81ee Run cross with --verbose flag (Martin Habovstiak) 742c69f Compile `no_std` test using xargo (Martin Habovstiak) 2572fb6 Migrate `no_std_test` to edition 2021 (Martin Habovstiak) df0523a Use `libc::abort` instead of `intrinsics::abort` (Martin Habovstiak) 924ba38 Update panic message handling (Martin Habovstiak) 614fe81 Whitelist known cfgs (Martin Habovstiak) 05a4e39 Don't use `core::i32::MAX` (Martin Habovstiak) Pull request description: Updated deprecated item and fixed cfg lints. ACKs for top commit: apoelstra: ACK 33a1893 Tree-SHA512: 8b66f1f404d44916b2a18dbbe829b31ec1915d3fd084164127aa6e5f98ee5de3ea988f5b1ed05e9532c026890a769b4c54e175508fe472beaea5898a477d5c76
2 parents 6648126 + 33a1893 commit 30dda2c

File tree

10 files changed

+28
-14
lines changed

10 files changed

+28
-14
lines changed

.github/workflows/cross.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ jobs:
5353
- name: install cross
5454
run: cargo install cross
5555
- name: run cross test
56-
run: cross test --target ${{ matrix.arch }}
56+
run: cross test --target ${{ matrix.arch }} --verbose

.github/workflows/rust.yml

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
uses: dtolnay/rust-toolchain@nightly
4747
- name: Install src
4848
run: rustup component add rust-src
49+
- name: Install xargo
50+
run: cargo install xargo
4951
- name: Running test script
5052
env:
5153
DO_FMT: true

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ bincode = "1.3.3"
5454
wasm-bindgen-test = "0.3"
5555
getrandom = { version = "0.2", features = ["js"] }
5656

57+
[lints.rust]
58+
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(bench)', 'cfg(secp256k1_fuzz)', 'cfg(rust_secp_no_symbol_renaming)'] }
5759

5860
[[example]]
5961
name = "sign_verify_recovery"

Cross.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.x86_64-pc-windows-gnu]
2+
image = "ghcr.io/cross-rs/x86_64-pc-windows-gnu:main"

contrib/_test.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ if [ "$DO_ASAN" = true ]; then
101101
RUSTFLAGS='-Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes -Cllvm-args=-msan-eager-checks=0' \
102102
cargo test --lib --all --features="$FEATURES" -Zbuild-std --target x86_64-unknown-linux-gnu
103103

104-
cargo run --release --manifest-path=./no_std_test/Cargo.toml | grep -q "Verified Successfully"
105-
cargo run --release --features=alloc --manifest-path=./no_std_test/Cargo.toml | grep -q "Verified alloc Successfully"
104+
cd no_std_test
105+
xargo run --release --target=x86_64-unknown-linux-gnu | grep -q "Verified Successfully"
106+
xargo run --release --target=x86_64-unknown-linux-gnu --features=alloc | grep -q "Verified alloc Successfully"
107+
cd -
106108
fi
107109

108110
# Run formatter if told to.

no_std_test/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "no_std_test"
33
version = "0.1.0"
44
authors = ["Elichai Turkel <[email protected]>"]
5+
edition = "2021"
56

67
[features]
78
alloc = ["secp256k1/alloc", "wee_alloc"]

no_std_test/Xargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[dependencies]
2+
alloc = {}

no_std_test/src/main.rs

+10-9
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
//!
2929
3030
#![feature(start)]
31-
#![feature(core_intrinsics)]
32-
#![feature(panic_info_message)]
3331
#![feature(alloc_error_handler)]
3432
#![no_std]
3533
extern crate libc;
@@ -48,8 +46,7 @@ extern crate wee_alloc;
4846
#[global_allocator]
4947
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
5048

51-
use core::fmt::{self, write, Write};
52-
use core::intrinsics;
49+
use core::fmt::{self, Write};
5350
use core::panic::PanicInfo;
5451

5552
use secp256k1::ecdh::{self, SharedSecret};
@@ -62,6 +59,10 @@ use serde_cbor::de;
6259
use serde_cbor::ser::SliceWrite;
6360
use serde_cbor::Serializer;
6461

62+
fn abort() -> ! {
63+
unsafe { libc::abort() }
64+
}
65+
6566
struct FakeRng;
6667
impl RngCore for FakeRng {
6768
fn next_u32(&mut self) -> u32 {
@@ -158,7 +159,7 @@ impl Write for Print {
158159
if curr + s.len() > MAX_PRINT {
159160
unsafe {
160161
libc::printf("overflow\n\0".as_ptr() as _);
161-
intrinsics::abort();
162+
abort();
162163
}
163164
}
164165
self.loc += s.len();
@@ -170,15 +171,15 @@ impl Write for Print {
170171
#[panic_handler]
171172
fn panic(info: &PanicInfo) -> ! {
172173
unsafe { libc::printf("shi1\n\0".as_ptr() as _) };
173-
let msg = info.message().unwrap();
174+
let msg = info.message();
174175
let mut buf = Print::new();
175-
write(&mut buf, *msg).unwrap();
176+
write!(&mut buf, "{}", msg).unwrap();
176177
buf.print();
177-
intrinsics::abort()
178+
abort()
178179
}
179180

180181
#[alloc_error_handler]
181182
fn alloc_error(_layout: Layout) -> ! {
182183
unsafe { libc::printf("alloc shi1\n\0".as_ptr() as _) };
183-
intrinsics::abort()
184+
abort()
184185
}

secp256k1-sys/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,6 @@ recovery = []
3232
lowmemory = []
3333
std = ["alloc"]
3434
alloc = []
35+
36+
[lints.rust]
37+
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(bench)', 'cfg(secp256k1_fuzz)', 'cfg(rust_secp_no_symbol_renaming)'] }

src/key.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -638,10 +638,9 @@ impl PublicKey {
638638
/// # }
639639
/// ```
640640
pub fn combine_keys(keys: &[&PublicKey]) -> Result<PublicKey, Error> {
641-
use core::i32::MAX;
642641
use core::mem::transmute;
643642

644-
if keys.is_empty() || keys.len() > MAX as usize {
643+
if keys.is_empty() || keys.len() > i32::MAX as usize {
645644
return Err(InvalidPublicKeySum);
646645
}
647646

0 commit comments

Comments
 (0)