Disable gen and set tests on debug for now

Due to #3898
This commit is contained in:
Ayaz Hafiz 2022-12-05 12:50:24 -06:00
parent 8317c4d038
commit 0bb31558e6
No known key found for this signature in database
GPG Key ID: 0E2A37416A25EF58
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,7 @@
#![cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
#![cfg(all(
any(feature = "gen-llvm", feature = "gen-wasm"),
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
))]
#[cfg(feature = "gen-llvm")]
use crate::helpers::llvm::assert_evals_to;

View File

@ -1,4 +1,7 @@
#![cfg(feature = "gen-llvm")]
#![cfg(all(
any(feature = "gen-llvm"),
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
))]
#[cfg(feature = "gen-llvm")]
use crate::helpers::llvm::assert_evals_to;