ci: drop wrongly calling make install-lint

Linting tools should already be installed by Nix, and we should use
them.

Also switching most shells to pure mode to see what happens.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-08-18 14:09:04 +02:00
parent d05ce522f9
commit 78b61ffe2c
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 2 additions and 3 deletions

View File

@ -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)
} }
}