Skip to content

Commit

Permalink
fixup! Increase build verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
rvem committed Aug 31, 2023
1 parent d6ba35a commit 4893f14
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
- uses: actions/checkout@v3

- name: build
run: nix build -vvv -L .#deploy.nodes.${{ matrix.server }}.profiles.system.path
run: nix develop .#debug -c strace -e 'trace=!all' nix build -vvv -L .#deploy.nodes.${{ matrix.server }}.profiles.system.path
27 changes: 16 additions & 11 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,17 +109,22 @@

in {
devShell = self.devShells.${system}.default;
devShells.default = pkgs.mkShell {
VAULT_ADDR = "https://vault.serokell.org:8200";
SSH_OPTS = "${builtins.concatStringsSep " " self.deploy.sshOpts}";
buildInputs = [
deploy-rs.packages.${system}.deploy-rs
pkgs.vault
(pkgs.vault-push-approle-envs self)
(pkgs.vault-push-approles self)
nix.packages.${system}.nix
pkgs.awscli
];
devShells = {
default = pkgs.mkShell {
VAULT_ADDR = "https://vault.serokell.org:8200";
SSH_OPTS = "${builtins.concatStringsSep " " self.deploy.sshOpts}";
buildInputs = [
deploy-rs.packages.${system}.deploy-rs
pkgs.vault
(pkgs.vault-push-approle-envs self)
(pkgs.vault-push-approles self)
nix.packages.${system}.nix
pkgs.awscli
];
};
debug = pkgs.mkShell {
buildInputs = [ pkgs.strace ];
};
};

# used in GitHub pipeline
Expand Down

0 comments on commit 4893f14

Please sign in to comment.