2024-03-20 17:45:09 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
- tag
|
|
|
|
- cron
|
|
|
|
- manual
|
2021-09-11 16:34:03 +02:00
|
|
|
|
2022-12-01 17:38:04 +01:00
|
|
|
steps:
|
2022-12-02 12:36:55 +01:00
|
|
|
- name: check formatting
|
2025-02-15 11:50:45 +01:00
|
|
|
image: nixpkgs/nix:nixos-24.11
|
2022-12-02 12:36:55 +01:00
|
|
|
environment:
|
2025-02-15 11:53:37 +01:00
|
|
|
NIX_PATH: 'nixpkgs=channel:nixos-24.11'
|
2022-12-02 12:36:55 +01:00
|
|
|
commands:
|
|
|
|
- nix-shell -p cargo -p rustfmt --run 'cargo fmt -- --check'
|
2022-12-01 17:38:04 +01:00
|
|
|
|
|
|
|
- name: build
|
2025-02-15 11:50:45 +01:00
|
|
|
image: nixpkgs/nix:nixos-24.11
|
2022-12-01 17:38:04 +01:00
|
|
|
commands:
|
|
|
|
- nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#debug.x86_64-linux.diplonat
|
|
|
|
|
|
|
|
- name: test
|
2025-02-15 11:50:45 +01:00
|
|
|
image: nixpkgs/nix:nixos-24.11
|
2022-12-01 17:38:04 +01:00
|
|
|
commands:
|
|
|
|
- nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#test.x86_64-linux.diplonat
|
|
|
|
- ./result-bin/bin/diplonat-*
|