Auto merge of #1879 - oli-obk:gitpod, r=RalfJung

Try out gitpod

At https://gitpod.io/#https://github.com/rust-lang/miri one can edit miri in the browser and run it and everything.

I'm experimenting with this here as a low-impact version of trying it out on the whole rustc repo. This .gitpod file should cause the user to land in a shell that can run ./miri test immediately without any additional prep
This commit is contained in:
bors 2021-08-30 15:33:59 +00:00
commit 9fc61cf486

9
.gitpod.yml Normal file
View File

@ -0,0 +1,9 @@
image: ubuntu:latest
tasks:
- before: echo "..."
init: |
cargo install rustup-toolchain-install-master
./rustup-toolchain
./miri build
command: echo "Run tests with ./miri test"