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 {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
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') {
|
stage('install_requirements') {
|
||||||
steps {
|
steps {
|
||||||
sh """
|
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') {
|
stage('bw test') {
|
||||||
parallel {
|
parallel {
|
||||||
stage('config and metadata determinism') {
|
stage('config and metadata determinism') {
|
||||||
|
|
Loading…
Reference in a new issue