1
0
Fork 0
forked from wry/wry

ci: burn to the ground

This commit is contained in:
atagen 2026-04-09 16:29:52 +10:00
parent 7b1f3cca04
commit 0932c68fad
7 changed files with 0 additions and 131 deletions

View file

@ -1,13 +0,0 @@
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
rustup toolchain install stable
- build: |
cd jay
cargo build

View file

@ -1,14 +0,0 @@
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 musl
rustup toolchain install stable
rustup target install x86_64-unknown-linux-musl
- build: |
cd jay
cargo check --target x86_64-unknown-linux-musl

View file

@ -1,22 +0,0 @@
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

View file

@ -1,20 +0,0 @@
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
cd jay
git submodule update --init
- test: |
cd jay
cargo test
- test-tc: |
cd jay
git submodule update --init
cd toml-config
cargo test

View file

@ -1,21 +0,0 @@
name: check-spv
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
check-spv:
runs-on: native
steps:
- uses: actions/checkout@v2
- name: Check
run: |
nix develop . --command cargo run --manifest-path compile-shaders/Cargo.toml -p compile-shaders-core
git diff --exit-code

View file

@ -1,19 +0,0 @@
name: rustfmt
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
runs-on: native
steps:
- uses: actions/checkout@v2
- name: Check
run: nix develop .#dev --command cargo fmt -- --check

View file

@ -1,22 +0,0 @@
name: toml-spec
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
toml-spec:
runs-on: native
steps:
- uses: actions/checkout@v2
- name: Check
run: |
cd toml-spec
nix develop .. --command cargo run
git diff --exit-code