18 lines
202 B
YAML
18 lines
202 B
YAML
platform: linux
|
|
|
|
image_resource:
|
|
type: registry-image
|
|
source: {repository: rust}
|
|
|
|
caches:
|
|
- path: "./target/"
|
|
|
|
inputs:
|
|
- name: repo
|
|
|
|
run:
|
|
path: cargo
|
|
args: ["build", "--release"]
|
|
dir: "repo"
|
|
|