From c8fa546a23703de72a325042c3f25f67cd4b35e4 Mon Sep 17 00:00:00 2001 From: Leon Date: Mon, 20 Nov 2023 19:17:10 +0100 Subject: [PATCH] Update .drone.yml Changed image to rust:alpine We don't have to specifically build for rust 1.66.1 (what RL9 currently uses), since we can build it with a runner and deploy the runner, with all libraries statically linked. --- .drone.yml | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3bd7243..3634d1c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,28 +1,28 @@ -kind: pipeline -name: test-on-amd64 - -platform: - arch: amd64 - -steps: -- name: test - image: rust:1.66.1-alpine - commands: - - rustc --version - - cargo --version - - cargo test --verbose --all - ---- -kind: pipeline -name: test-on-arm64 - -platform: - arch: arm64 - -steps: -- name: test - image: rust:1.66.1-alpine - commands: - - rustc --version - - cargo --version +kind: pipeline +name: test-on-amd64 + +platform: + arch: amd64 + +steps: +- name: test + image: rust:alpine + commands: + - rustc --version + - cargo --version + - cargo test --verbose --all + +--- +kind: pipeline +name: test-on-arm64 + +platform: + arch: arm64 + +steps: +- name: test + image: rust:alpine + commands: + - rustc --version + - cargo --version - cargo test --verbose --all \ No newline at end of file