deploy: 995441234455d303e211a8471913817d635f2726

This commit is contained in:
jakubgs 2022-10-04 18:10:37 +00:00
parent 8301b4f3d7
commit ece133221a
2 changed files with 1 additions and 2 deletions

View File

@ -133,7 +133,7 @@ def versionWasChanged(version) {
script: "git diff --name-only origin/${env.CHANGE_TARGET}",
returnStdout: true
)
if (changes =~ "(?m)^(Makefile|waku.nimble|config.nims|vendor|ci).*") {
if (changes =~ "(?m)^(Makefile|waku.nimble|config.nims|vendor|ci|shell.nix).*") {
return true
}
if (changes =~ "(?m)^(waku|tests|examples)/(${version}|common)/.*") {

View File

@ -10,7 +10,6 @@ pkgs.mkShell {
buildInputs = with pkgs; [
git # 2.37.3
which # 2.21
gcc # 11.3.0
rustc # 1.63.0
] ++ lib.optionals stdenv.isDarwin [ libiconv ];
}