Jenkinsfile 497 Bytes
Newer Older
Dominik Vayhinger's avatar
Dominik Vayhinger committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pipeline {
    agent any
    tools {
        jdk 'Java11'
    }
    stages {
        stage('Checkout') {
            steps {
                git branch: 'master',
                //Link anpassen auf Finalem Repo
                url: 'https://gitlab.rz.hft-stuttgart.de/swp2-lc/moodle-assignsubmission_mojec.git'
            }
        }
        stage('Build') {
            steps {
                sh 'chmod 744 update_plugin_script.sh && ./update_plugin_script.sh'
            }
        }
    }
}