Jeremy Ronquillo | 9adc0a9 | 2020-01-29 10:49:45 -0800 | [diff] [blame] | 1 | // Copyright 2020-present Open Networking Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | // omec-fossa-scan.groovy |
| 16 | // checks an omec-project repo against fossa in a docker container |
| 17 | |
| 18 | pipeline { |
| 19 | |
| 20 | agent { |
| 21 | docker { |
| 22 | image "fossa-verify:latest" |
| 23 | label "${params.buildNode}" |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | options { |
| 28 | timeout(15) |
| 29 | } |
| 30 | |
| 31 | stages { |
| 32 | |
| 33 | stage ("Clean Workspace") { |
| 34 | steps { |
| 35 | sh 'rm -rf *' |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | stage ("Checkout Pull Request") { |
| 40 | steps { |
| 41 | checkout([ |
| 42 | $class: 'GitSCM', |
| 43 | userRemoteConfigs: [[ url: "https://github.com/${params.ghprbGhRepository}", refspec: "+refs/pull/${params.ghprbPullId}/merge" ]], |
| 44 | ], |
| 45 | ) |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | stage ("Perform License Scan") { |
| 50 | steps { |
| 51 | withCredentials([string(credentialsId: 'fossa-api-key', variable: 'FOSSA_API_KEY')]) { |
| 52 | sh """ |
| 53 | #!/usr/bin/env bash |
| 54 | |
| 55 | git checkout FETCH_HEAD |
| 56 | echo "Testing project: ${params.project}" |
| 57 | |
| 58 | echo "Run 'fossa init'" |
| 59 | fossa init --no-ansi --verbose |
| 60 | |
| 61 | echo "Contents of .fossa.yml generated by 'fossa init':" |
| 62 | cat .fossa.yml |
| 63 | |
| 64 | echo "Run 'fossa analyze'" |
| 65 | fossa analyze --no-ansi --verbose |
| 66 | |
| 67 | echo "Get FOSSA test results with 'fossa test'" |
| 68 | fossa test --no-ansi --verbose |
| 69 | """ |
| 70 | |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | } |
| 75 | } |