tricot/.drone.yml

39 lines
874 B
YAML
Raw Normal View History

2022-12-01 16:05:32 +00:00
---
kind: pipeline
name: default
node:
nix-daemon: 1
steps:
- name: check formatting
image: nixpkgs/nix:nixos-22.05
commands:
2022-12-01 16:07:22 +00:00
- nix run --extra-experimental-features nix-command --extra-experimental-features flakes github:nixos/nixpkgs/nixos-22.05#cargo fmt -- --check
2022-12-01 16:05:32 +00:00
- name: build
image: nixpkgs/nix:nixos-22.05
commands:
- nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#debug.x86_64-linux.tricot
- name: test
image: nixpkgs/nix:nixos-22.05
commands:
- nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#test.x86_64-linux.tricot
- ./result-bin/bin/tricot-*
trigger:
event:
- custom
- push
- pull_request
- tag
- cron
---
kind: signature
2022-12-01 16:07:22 +00:00
hmac: 38bfdf1a2cd55171dfdf023936ba2b3caeddd7a836b44a481fd23c7a0291d0ad
2022-12-01 16:05:32 +00:00
...