From d867e43b12fc19e1be6b24457f340283473e1d3a Mon Sep 17 00:00:00 2001 From: passthem Date: Sun, 22 Feb 2026 19:43:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E4=BA=86=E4=B8=8D=E8=A6=81?= =?UTF-8?q?=E4=BA=86=EF=BC=88=E6=8C=87=E8=87=AA=E5=8A=A8=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index e2b2a24..0000000 --- a/.drone.yml +++ /dev/null @@ -1,28 +0,0 @@ -kind: pipeline -type: docker -name: rust-build-amd64 - -steps: - - name: check-version - image: rust:1.93 - commands: - - rustc --version - - cargo --version - - - name: build - image: rust:1.93 - environment: - CARGO_HOME: .cargo - commands: - - cargo build --release --target x86_64-unknown-linux-gnu - - - name: test - image: rust:1.93 - commands: - - cargo test --release - - - name: copy-out - image: busybox - commands: - - cp target/release/my-rust-app /artifacts/my-rust-app-amd64 -