diff --git a/.drone.yml b/.drone.yml index ec5d46e..8907004 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,14 +6,14 @@ steps: image: rust commands: - apt update - - apt -y install luajit + - apt -y install libluajit-5.1-dev - cargo test -v - name: clippy-linux image: rust commands: - apt update - - apt -y install luajit + - apt -y install libluajit-5.1-dev - rustup component add clippy - cargo clippy --- @@ -25,7 +25,7 @@ steps: image: rust commands: - apt update - - apt -y install luajit + - apt -y install libluajit-5.1-dev - cargo build --release -v - strip target/release/lmpt @@ -33,7 +33,7 @@ steps: image: lordmzte/rust-win commands: - apt update - - apt -y install luajit + - apt -y install libluajit-5.1-dev - cargo build --release --target x86_64-pc-windows-gnu -v - name: publish