We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a23fe commit 1c72d0cCopy full SHA for 1c72d0c
.github/workflows/nix.yml
@@ -0,0 +1,19 @@
1
+name: "Nix Env Build"
2
+on:
3
+ pull_request:
4
+ push:
5
+jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: cachix/install-nix-action@v31
11
+ with:
12
+ nix_path: nixpkgs=channel:nixos-24.11
13
+ - run: nix-shell --run ./scripts/bundle.sh
14
+ - run: nix-shell --run ./autogen.sh
15
+ - run: nix-shell --run ./configure
16
+ - run: nix-shell --run make
17
+ - run: nix-shell --run "src/suricata -V"
18
+ - run: nix-shell --run "make compile-commands"
19
0 commit comments