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.
This commit is contained in:
parent
a94958e047
commit
c8fa546a23
54
.drone.yml
54
.drone.yml
@ -1,28 +1,28 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: test-on-amd64
|
name: test-on-amd64
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: test
|
||||||
image: rust:1.66.1-alpine
|
image: rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
- cargo test --verbose --all
|
- cargo test --verbose --all
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: test-on-arm64
|
name: test-on-arm64
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
arch: arm64
|
arch: arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: test
|
||||||
image: rust:1.66.1-alpine
|
image: rust:alpine
|
||||||
commands:
|
commands:
|
||||||
- rustc --version
|
- rustc --version
|
||||||
- cargo --version
|
- cargo --version
|
||||||
- cargo test --verbose --all
|
- cargo test --verbose --all
|
Reference in New Issue
Block a user