ci: burn to the ground
This commit is contained in:
parent
7b1f3cca04
commit
0932c68fad
7 changed files with 0 additions and 131 deletions
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
21
.github/workflows/check-spv.yml
vendored
21
.github/workflows/check-spv.yml
vendored
|
|
@ -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
|
|
||||||
19
.github/workflows/rustfmt.yml
vendored
19
.github/workflows/rustfmt.yml
vendored
|
|
@ -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
|
|
||||||
22
.github/workflows/toml-spec.yml
vendored
22
.github/workflows/toml-spec.yml
vendored
|
|
@ -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
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue