CI: replace compiletest-rs with trybuild

We use compiletest to run compile-fail tests but compiletest depends on compiler
internals so it breaks every now and then and requires nightly. With trybuild we
can also run compile-fail tests but it works on stable and it already has
reached version 1.0
This commit is contained in:
Jorge Aparicio 2019-11-06 19:05:37 -05:00
parent 72e84cb297
commit 31b392fe3a
12 changed files with 23 additions and 47 deletions

View file

@ -7,7 +7,4 @@ runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semiho
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
rustflags = [
"-C", "link-arg=-Tlink.x",
]
[build]
target = "thumbv7m-none-eabi"
]