Skip to content

Commit

Permalink
ci: attempt to run checks at buildbot-nix (#159)
Browse files Browse the repository at this point in the history
* ci: attempting build and clippy on buildbot-nix

* unrelated: removing unneded cargo audit bypass

* bump: updates to flake and cargo to trigger rebuild
  • Loading branch information
nicolasauler authored Nov 29, 2024
1 parent 0698090 commit ed0e34d
Show file tree
Hide file tree
Showing 5 changed files with 297 additions and 92 deletions.
1 change: 0 additions & 1 deletion .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[advisories]
ignore = [
"RUSTSEC-2023-0071", # rsa marvin attack
"RUSTSEC-2024-0370", # proc-macro-error unmaintained triggered by validator
]

[output]
Expand Down
23 changes: 11 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions devshells.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
perSystem = {
inputs',
self',
pkgs,
system,
...
}: {
devShells.default = let
rust = pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
in
pkgs.mkShellNoCC {
buildInputs = with pkgs; [
bacon
cargo-expand
cargo-llvm-cov
cargo-nextest
cargo-watch
jq
nixpkgs-fmt
openssl
pkg-config
postgresql
python3
rust
svix-cli
sqlx-cli
];
};
};
}
169 changes: 147 additions & 22 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ed0e34d

Please sign in to comment.