File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ tap 'homebrew/core'
2+
3+ brew 'perl'
4+ brew 'cpanm'
5+
6+ brew 'python@2'
Original file line number Diff line number Diff line change 1+ @Library (' xmos_jenkins_shared_library@develop' ) _
2+
3+ getApproval()
4+
5+ pipeline {
6+ agent {
7+ label ' x86_64&&brew'
8+ }
9+ environment {
10+ VIEW = " ${ env.JOB_NAME.contains('PR-') ? 'lib_xassert_'+env.CHANGE_TARGET : 'lib_xassert_'+env.BRANCH_NAME} "
11+ REPO = ' lib_xassert'
12+ }
13+ options {
14+ skipDefaultCheckout()
15+ }
16+ stages {
17+ stage(' Get view' ) {
18+ steps {
19+ xcorePrepareSandbox(" ${ VIEW} " , " ${ REPO} " )
20+ }
21+ }
22+ stage(' Library checks' ) {
23+ steps {
24+ xcoreLibraryChecks(" ${ REPO} " )
25+ }
26+ }
27+ stage(' Tests' ) {
28+ steps {
29+ runXmostest(" ${ REPO} " , ' tests' )
30+ }
31+ }
32+ }
33+ post {
34+ success {
35+ updateViewfiles()
36+ }
37+ cleanup {
38+ cleanWs()
39+ }
40+ }
41+ }
Original file line number Diff line number Diff line change 1+ requires ' File::Copy::Recursive' ;
2+ requires ' LWP::Simple'
You can’t perform that action at this time.
0 commit comments