Compare commits

...

2 Commits

Author SHA1 Message Date
f76758ddea
use cache in workflow
All checks were successful
Build / Build (push) Successful in 46m49s
2025-03-17 20:45:59 -04:00
8801341493
Add gitea build workflow
All checks were successful
Build / Build (push) Successful in 43m44s
2025-03-17 19:09:19 -04:00
5 changed files with 442 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,25 @@
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: Restore cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- 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] [package]
name = "bevy_blacklight_material" name = "bevy_blacklight_material"
description = "A blacklight material plugin for the Bevy engine" description = "A blacklight material plugin for the Bevy engine"
version = "0.2.0" version = "0.2.1"
edition = "2021" edition = "2021"
license = "0BSD OR Apache-2.0 OR MIT" license = "0BSD OR Apache-2.0 OR MIT"
repository = "https://git.exvacuum.dev/bevy_blacklight_material" repository = "https://git.exvacuum.dev/bevy_blacklight_material"
[dependencies.bevy] [dependencies.bevy]
version = "0.15" version = "0.15"
features = ["bevy_render", "bevy_asset"] default-features = false
features = ["bevy_render", "bevy_asset", "bevy_pbr"]