Add gitea build workflow
All checks were successful
Build / Build (push) Successful in 43m44s

This commit is contained in:
Silas Bartha 2025-03-17 19:09:19 -04:00
parent 7d084ef6a4
commit 8801341493
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
5 changed files with 432 additions and 1712 deletions

2
.cargo/config.toml Normal file
View File

@ -0,0 +1,2 @@
[profile.dev.package."*"]
opt-level = 2

View File

@ -0,0 +1,15 @@
name: Build
on: [push]
jobs:
Build:
env:
RUNNER_TOOL_CACHE: /toolcache
container: rust:alpine
steps:
- name: Install node
run: apk add nodejs gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev tar
- name: Check out repository code
uses: actions/checkout@v4
- name: Build
run: cargo build --release

View File

@ -1,24 +0,0 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

2098
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,12 @@
[package]
name = "bevy_blacklight_material"
description = "A blacklight material plugin for the Bevy engine"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "0BSD OR Apache-2.0 OR MIT"
repository = "https://git.exvacuum.dev/bevy_blacklight_material"
[dependencies.bevy]
version = "0.15"
features = ["bevy_render", "bevy_asset"]
default-features = false
features = ["bevy_render", "bevy_asset", "bevy_pbr"]