We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9f5397 commit cad07abCopy full SHA for cad07ab
.github/workflows/ci.yml
@@ -10,4 +10,4 @@ jobs:
10
- uses: cachix/install-nix-action@v12
11
with:
12
skip_adding_nixpkgs_channel: true
13
- - run: nix-build -A hydraJobs.release
+ - run: nix-build -A hydraJobs.release -A hydraJobs.build-sanitized
flake.nix
@@ -58,6 +58,9 @@
58
};
59
60
build = forAllSystems (system: nixpkgsFor.${system}.patchelf-new);
61
+ build-sanitized = forAllSystems (system: nixpkgsFor.${system}.patchelf-new.overrideAttrs (old: {
62
+ configureFlags = [ "--with-asan " "--with-ubsan" ];
63
+ }));
64
65
release = pkgs.releaseTools.aggregate
66
{ name = "patchelf-${self.hydraJobs.tarball.version}";
0 commit comments