Skip to content

Update CI

Update CI #21

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
CARGO_TERM_VERBOSE: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup show
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
- name: Install system packages needed by Bevy
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets
- run: cargo test
- run: cargo build --release --no-default-features
build-debug:
runs-on: ubuntu-latest
needs: lint
if: github.ref != 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- run: rustup show
- name: Install system packages needed by Bevy
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: Swatinem/rust-cache@v2
- run: cargo build --no-default-features
- uses: actions/upload-artifact@v4
with:
name: infinigen
path: target/debug/infinigen
build-release:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- run: rustup show
- name: Install system packages needed by Bevy
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: Swatinem/rust-cache@v2
- run: cargo build --release --no-default-features
- uses: actions/upload-artifact@v4
with:
name: infinigen
path: target/release/infinigen