Skip to content

Commit 2ee448d

Browse files
committed
Fix CI
1 parent eabfa76 commit 2ee448d

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.circleci/config.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -245,17 +245,13 @@ jobs:
245245
keys:
246246
- cargocache-v2-package_crypto-rust:1.74-{{ checksum "Cargo.lock" }}
247247
- run:
248-
name: Build (no features)
249-
working_directory: ~/project/packages/crypto
250-
command: cargo build --locked --no-default-features
251-
- run:
252-
name: Build (all features)
248+
name: Build
253249
working_directory: ~/project/packages/crypto
254-
command: cargo build --locked --features std
250+
command: cargo build --locked
255251
- run:
256252
name: Run tests
257253
working_directory: ~/project/packages/crypto
258-
command: cargo test --locked --features std
254+
command: cargo test --locked
259255
- save_cache:
260256
paths:
261257
- /usr/local/cargo/registry

packages/crypto/tests/bls12_381.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "std")]
2-
31
use std::{error::Error, fs};
42

53
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};

0 commit comments

Comments
 (0)