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: Build - Debug:
image: *rust_image image: *rust_image
commands: commands:
- apt update - apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- 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 - apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo test --all - cargo test --all

View File

@ -8,13 +8,11 @@ steps:
Build - Release: Build - Release:
image: *rust_image image: *rust_image
commands: commands:
- apt update - apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- 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 - apk --update add libudev-zero lua5.4 lua5.4-dev musl-dev --no-interactive
- apt install libudev-dev lua5.4 liblua5.4-dev -y
- cargo test --all --release - cargo test --all --release