Browse Source

Test with const-fn on nightly

Vadim Kaushan 6 years ago
parent
commit
d56bb29474
1 changed files with 1 additions and 1 deletions
  1. 1 1
      riscv-rt/ci/script.sh

+ 1 - 1
riscv-rt/ci/script.sh

@@ -4,7 +4,7 @@ main() {
     cargo check --target $TARGET
 
     if [ $TRAVIS_RUST_VERSION = nightly ]; then
-        cargo check --target $TARGET --features inline-asm
+        cargo check --target $TARGET --features 'const-fn inline-asm'
     fi
 }