Skip to content

Commit f0a9982

Browse files
committed
Switch to nightly branch of rustc
Inline ASM isn't stable, see https://doc.rust-lang.org/unstable-book/language-features/asm.html and rust-lang/rust#29722. We use asm in `src/kernel/execve/loader`, which needs direct access to registers and can't be done in pure rust. We also use the `syscall` crate in several places, which also uses inline asm.
1 parent cd7e191 commit f0a9982

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
language: rust
22
rust:
3-
- stable
4-
- beta
3+
- nightly
54
before_script:
65
- rustup component add clippy rustfmt
76
script:
87
- cargo fmt --all -- --check
98
- cargo clippy -- -D warnings
10-
- cargo build
119
- cargo test

0 commit comments

Comments
 (0)