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 image: *rust_image
commands: commands:
- apt update - apt update
- apt install libudev-dev -y - apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo build - cargo build
Test - Debug: Test - Debug:
image: *rust_image image: *rust_image
commands: commands:
- apt update - apt update
- apt install libudev-dev -y - apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo test --all - cargo test --all

View File

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