Zack Williams | e64341b | 2018-04-10 22:14:35 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
Zack Williams | 32293ee | 2018-05-18 09:15:13 -0700 | [diff] [blame] | 3 | # Copyright 2017-present Open Networking Foundation |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Zack Williams | e64341b | 2018-04-10 22:14:35 -0700 | [diff] [blame] | 17 | # jflint.sh - lint for Jenkins declarative pipeline jobs |
| 18 | # |
| 19 | # curl commands from: https://jenkins.io/doc/book/pipeline/development/#linter |
| 20 | |
| 21 | set -e -u -o pipefail |
| 22 | |
Zack Williams | f4c9c40 | 2018-06-27 14:58:43 -0700 | [diff] [blame] | 23 | JENKINS_URL=https://jenkins.opencord.org/ |
Zack Williams | e64341b | 2018-04-10 22:14:35 -0700 | [diff] [blame] | 24 | JF_LIST=() |
| 25 | |
| 26 | # if no args, and there's a Jenkinsfile in cwd, check it |
| 27 | if [ ! -n "$1" ] && [ -f "Jenkinsfile" ] ; then |
| 28 | JF_LIST+=("Jenkinsfile") |
| 29 | else |
| 30 | # iterate over all args, check if they exist, then add to list of jenkinsfiles to check |
| 31 | for arg in "$@"; do |
| 32 | if [ -f "$arg" ]; then |
| 33 | JF_LIST+=($arg) |
| 34 | else |
| 35 | echo "File does not exist: ${arg}" |
| 36 | exit 1; |
| 37 | fi |
| 38 | done |
| 39 | fi |
| 40 | |
| 41 | # JENKINS_CRUMB is needed if your Jenkins master has CRSF protection enabled as it should |
| 42 | JENKINS_CRUMB=$(curl "$JENKINS_URL/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,\":\",//crumb)") |
| 43 | |
| 44 | for target in "${JF_LIST[@]-}"; do |
| 45 | echo "Checking '${target}'" |
| 46 | curl -X POST -H "${JENKINS_CRUMB}" -F "jenkinsfile=<${target}" $JENKINS_URL/pipeline-model-converter/validate |
| 47 | done |
| 48 | |