22 lines
667 B
YAML
22 lines
667 B
YAML
image: archlinux
|
|
sources:
|
|
- https://github.com/mahkoh/jay
|
|
tasks:
|
|
- packages: |
|
|
echo 'Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch' | sudo tee /etc/pacman.d/mirrorlist
|
|
- install: |
|
|
sudo pacman -Syu --noconfirm
|
|
sudo pacman -S --noconfirm rustup libinput pango mesa xorg-xwayland adwaita-icon-theme libxcursor
|
|
rustup toolchain install stable
|
|
- configure: |
|
|
sudo rmmod bochs
|
|
sudo modprobe vkms
|
|
sudo chmod o+rw /dev/dri/card*
|
|
sudo chmod o+r /dev/udmabuf
|
|
- build: |
|
|
cd jay
|
|
cargo build --features it
|
|
- test: |
|
|
cd jay
|
|
export RUST_BACKTRACE=1
|
|
./target/debug/jay run-tests
|