ci: install lua5.4 to support lyra-scripting
ci/woodpecker/push/debug Pipeline failed Details

This commit is contained in:
SeanOMik 2024-01-04 23:59:22 -05:00
parent 98ee6fc323
commit 0a97cf7617
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
2 changed files with 4 additions and 4 deletions

View File

@ -7,12 +7,12 @@ steps:
image: *rust_image
commands:
- apt update
- apt install libudev-dev -y
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo build
Test - Debug:
image: *rust_image
commands:
- apt update
- apt install libudev-dev -y
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo test --all

View File

@ -9,12 +9,12 @@ steps:
image: *rust_image
commands:
- apt update
- apt install libudev-dev -y
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo build --release
Test - Release:
image: *rust_image
commands:
- apt update
- apt install libudev-dev -y
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo test --all --release