This commit is contained in:
SeanOMik 2024-02-11 10:09:23 -05:00
parent b0902967d1
commit c0f74c169c
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
2 changed files with 4 additions and 8 deletions

View File

@ -6,13 +6,11 @@ steps:
Build - Debug:
image: *rust_image
commands:
- apt update
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- cargo build
Test - Debug:
image: *rust_image
commands:
- apt update
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- cargo test --all

View File

@ -8,13 +8,11 @@ steps:
Build - Release:
image: *rust_image
commands:
- apt update
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- cargo build --release
Test - Release:
image: *rust_image
commands:
- apt update
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- cargo test --all --release