| garciadeblas | f35062b | 2025-12-23 22:57:08 +0100 | [diff] [blame^] | 1 | /* |
| 2 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | you may not use this file except in compliance with the License. |
| 4 | You may obtain a copy of the License at |
| 5 | |
| 6 | http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | |
| 8 | Unless required by applicable law or agreed to in writing, software |
| 9 | distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY, either express or |
| 11 | implied. |
| 12 | See the License for the specific language governing permissions and |
| 13 | limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | pipeline { |
| 17 | agent none |
| 18 | parameters { |
| 19 | string(defaultValue: env.GERRIT_BRANCH, description: '', name: 'GERRIT_BRANCH') |
| 20 | string(defaultValue: 'osm/IM', description: '', name: 'GERRIT_PROJECT') |
| 21 | string(defaultValue: env.GERRIT_REFSPEC, description: '', name: 'GERRIT_REFSPEC') |
| 22 | string(defaultValue: env.GERRIT_PATCHSET_REVISION, description: '', name: 'GERRIT_PATCHSET_REVISION') |
| 23 | string(defaultValue: 'https://osm.etsi.org/gerrit', description: '', name: 'PROJECT_URL_PREFIX') |
| 24 | } |
| 25 | stages { |
| 26 | stage('TEST') { |
| 27 | agent { label 'system' } |
| 28 | steps { |
| 29 | echo "HELLO" |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |