lyra-engine/.woodpecker/.debug.yml

22 lines
447 B
YAML
Raw Normal View History

2023-12-28 22:40:37 -05:00
variables:
- &rust_image 'git.seanomik.net/seanomik/rust-nightly:2023-11-21-bookworm'
2024-03-02 22:51:46 -05:00
when:
event: [push, manual, pull_request]
branch: main
2023-12-28 22:40:37 -05:00
steps:
Build - Debug:
image: *rust_image
commands:
- apt update
- apt install libudev-dev lua5.4 liblua5.4-dev -y
2023-12-28 22:40:37 -05:00
- cargo build
Test - Debug:
image: *rust_image
commands:
- apt update
- apt install libudev-dev lua5.4 liblua5.4-dev -y
2023-12-28 22:40:37 -05:00
- cargo test --all