Jenkinsfile: add editorconfig-checker #29
1 changed files with 9 additions and 9 deletions
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
|
@ -1,6 +1,15 @@
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('editorconfig-checker') {
|
||||
steps {
|
||||
sh """
|
||||
wget -Oec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/latest/download/ec-linux-amd64.tar.gz
|
||||
tar -xzf ec-linux-amd64.tar.gz && rm ec-linux-amd64.tar.gz
|
||||
bin/ec-linux-amd64 -no-color
|
||||
"""
|
||||
}
|
||||
}
|
||||
stage('install_requirements') {
|
||||
steps {
|
||||
sh """
|
||||
|
@ -14,15 +23,6 @@ pipeline {
|
|||
"""
|
||||
}
|
||||
}
|
||||
stage('editorconfig-checker') {
|
||||
steps {
|
||||
sh """
|
||||
wget -Oec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/latest/download/ec-linux-amd64.tar.gz
|
||||
tar -xzf ec-linux-amd64.tar.gz && rm ec-linux-amd64.tar.gz
|
||||
bin/ec-linux-amd64
|
||||
"""
|
||||
}
|
||||
}
|
||||
stage('bw test') {
|
||||
parallel {
|
||||
stage('config and metadata determinism') {
|
||||
|
|
Loading…
Reference in a new issue