19 lines
346 B
YAML
Executable File
19 lines
346 B
YAML
Executable File
|
|
variables:
|
|
- &rust_image 'rust:1.76-alpine'
|
|
|
|
steps:
|
|
Build - Debug:
|
|
image: *rust_image
|
|
commands:
|
|
- apt update
|
|
- apt install libudev-dev lua5.4 liblua5.4-dev -y
|
|
- cargo build
|
|
|
|
Test - Debug:
|
|
image: *rust_image
|
|
commands:
|
|
- apt update
|
|
- apt install libudev-dev lua5.4 liblua5.4-dev -y
|
|
- cargo test --all
|