aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..6e94c75
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,40 @@
+---
+kind: pipeline
+name: default
+
+node:
+ nix-daemon: 1
+
+steps:
+ - name: check formatting
+ image: nixpkgs/nix:nixos-22.05
+ environment:
+ NIX_PATH: 'nixpkgs=channel:nixos-22.05'
+ commands:
+ - nix-shell -p cargo -p rustfmt --run 'cargo fmt -- --check'
+
+ - name: build
+ image: nixpkgs/nix:nixos-22.05
+ commands:
+ - nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#debug.x86_64-linux.d53
+
+ - name: test
+ image: nixpkgs/nix:nixos-22.05
+ commands:
+ - nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#test.x86_64-linux.d53
+ - ./result-bin/bin/d53-*
+
+trigger:
+ event:
+ - custom
+ - push
+ - pull_request
+ - tag
+ - cron
+
+
+---
+kind: signature
+hmac: 49cde53ec25364cc3b3f041092c8e658fe9252342253757d86814ca12d5cb0f7
+
+...