diff --git a/custom-jobs/Extragear craft master SUSEQt5.9.pipeline b/custom-jobs/Extragear craft master SUSEQt5.9.pipeline index 0163252..7591605 100644 --- a/custom-jobs/Extragear craft master SUSEQt5.9.pipeline +++ b/custom-jobs/Extragear craft master SUSEQt5.9.pipeline @@ -1,54 +1,54 @@ // Request a node to be allocated to us node( "SUSEQt5.9" ) { // We want Timestamps on everything timestamps { // We want to catch any errors that occur to allow us to send out notifications (ie. emails) if needed catchError { // First Thing: Checkout Sources stage('Checkout Sources') { // Craft itself checkout changelog: true, poll: true, scm: [ $class: 'GitSCM', branches: [[name: 'master']], extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'craft/']], userRemoteConfigs: [[url: "https://anongit.kde.org/craft"]] ] // Craftmaster checkout changelog: true, poll: true, scm: [ $class: 'GitSCM', branches: [[name: 'master']], extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'craftmaster/']], userRemoteConfigs: [[url: "https://anongit.kde.org/craftmaster"]] ] // Craft Blueprints for KDE checkout changelog: true, poll: true, scm: [ $class: 'GitSCM', branches: [[name: 'master']], extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'craft-blueprints-kde/']], userRemoteConfigs: [[url: "https://anongit.kde.org/craft-blueprints-kde"]] ] } // Use Craftmaster to get Craft ready to go - stage('Building Application') { + stage('Setting Up Craft') { // Install craft and it's core dependencies... sh """ python3 craftmaster/CraftMaster.py --config craftmaster/config/CraftBinaryCache.ini -c -i craft """ } // Now run the Craft tests - stage('Capturing APKs') { + stage('Running Tests') { // Ask Craftmaster to do this for us too sh """ python3 craftmaster/CraftMaster.py --config craftmaster/config/CraftBinaryCache.ini -c --test craft-core """ } } } }