@@ -257,12 +257,6 @@ test:
257
257
- cargo test --verbose --all-features --no-fail-fast --workspace
258
258
- cargo test --verbose --all-features --no-fail-fast --workspace --doc
259
259
260
- # Just needed as long as we have the `ink-experimental-engine` feature.
261
- # We do not invoke `--all-features` here -- this would imply the feature
262
- # `ink-experimental-engine`. So in order to still run the tests without the
263
- # experimental engine feature we need this command.
264
- - cargo test --verbose --features std --no-fail-fast --workspace
265
-
266
260
docs :
267
261
stage : workspace
268
262
<< : *docker-env
@@ -318,11 +312,6 @@ codecov:
318
312
# RUSTFLAGS are the cause target cache can't be used here
319
313
- cargo build --verbose --all-features --workspace
320
314
- cargo test --verbose --all-features --no-fail-fast --workspace
321
- # Just needed as long as we have the `ink-experimental-engine` feature.
322
- # We must additionally run the coverage without `--all-features` here -- this
323
- # would imply the feature `ink-experimental-engine`. So in order to still run
324
- # the tests without the experimental engine feature we need this command.
325
- - cargo test --verbose --features std --no-fail-fast --workspace
326
315
# coverage with branches
327
316
- grcov . --binary-path ./target/debug/ --source-dir . --output-type lcov --llvm --branch
328
317
--ignore-not-existing --ignore "/*" --ignore "tests/*" --output-path lcov-w-branch.info
@@ -352,22 +341,6 @@ examples-test:
352
341
cargo test --verbose --manifest-path examples/delegator/${contract}/Cargo.toml;
353
342
done
354
343
355
- examples-test-experimental-engine :
356
- stage : examples
357
- << : *docker-env
358
- << : *test-refs
359
- needs :
360
- - job : clippy-std
361
- artifacts : false
362
- script :
363
- # We test only the examples for which the tests have already been migrated to
364
- # use the experimental engine.
365
- - cargo test --no-default-features --features std, ink-experimental-engine --verbose --manifest-path examples/erc20/Cargo.toml
366
- - cargo test --no-default-features --features std, ink-experimental-engine --verbose --manifest-path examples/erc1155/Cargo.toml
367
- - cargo test --no-default-features --features std, ink-experimental-engine --verbose --manifest-path examples/contract-terminate/Cargo.toml
368
- - cargo test --no-default-features --features std, ink-experimental-engine --verbose --manifest-path examples/contract-transfer/Cargo.toml
369
-
370
-
371
344
examples-contract-build :
372
345
stage : examples
373
346
<< : *docker-env
0 commit comments