17 lines
364 B
YAML
Executable File
17 lines
364 B
YAML
Executable File
|
|
variables:
|
|
- &rust_image 'rust:1.76-alpine'
|
|
|
|
steps:
|
|
Build - Debug:
|
|
image: *rust_image
|
|
commands:
|
|
- apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
|
|
- cargo build
|
|
|
|
Test - Debug:
|
|
image: *rust_image
|
|
commands:
|
|
- apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
|
|
- cargo test --all
|