From 0a97cf761753a8010c730524f6e8a7e842e5a74d Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Thu, 4 Jan 2024 23:59:22 -0500 Subject: [PATCH] ci: install lua5.4 to support lyra-scripting --- .woodpecker/.debug.yml | 4 ++-- .woodpecker/.release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker/.debug.yml b/.woodpecker/.debug.yml index 36973d8..c7a7690 100644 --- a/.woodpecker/.debug.yml +++ b/.woodpecker/.debug.yml @@ -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 diff --git a/.woodpecker/.release.yml b/.woodpecker/.release.yml index d922a35..2f36e9a 100644 --- a/.woodpecker/.release.yml +++ b/.woodpecker/.release.yml @@ -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