mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 00:16:17 +04:00
15 lines
257 B
YAML
15 lines
257 B
YAML
sudo: required
|
|
|
|
language: rust
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull wangrunji0408/riscv-rust
|
|
- docker run -d -v $(pwd):$(pwd) -w $(pwd) wangrunji0408/riscv-rust \
|
|
/bin/sh -c "make build arch=riscv32"
|
|
|
|
script:
|
|
- bundle exec rake test
|