diff --git a/_assets/ci/Jenkinsfile.tests b/_assets/ci/Jenkinsfile.tests index be66d9c8a..53c8ac37a 100644 --- a/_assets/ci/Jenkinsfile.tests +++ b/_assets/ci/Jenkinsfile.tests @@ -57,14 +57,13 @@ pipeline { stage('Lint') { steps { script { - nix.shell('make install-lint', pure: false) - nix.shell('make lint', pure: false) + nix.shell('make lint', pure: true) } } } stage('Canary') { steps { script { - nix.shell('make canary-test', pure: false) + nix.shell('make canary-test', pure: true) } } }