Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Jenkinsfile - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9a3a9864af14d411410c21b4182a140230fb446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
parallel_nodes(['linux && cura', 'windows && cura'])
{
    timeout(time: 2, unit: "HOURS")
    {

        // Prepare building
        stage('Prepare')
        {
            // Ensure we start with a clean build directory.
            step([$class: 'WsCleanup'])

            // Checkout whatever sources are linked to this pipeline.
            checkout scm
        }

        // If any error occurs during building, we want to catch it and continue with the "finale" stage.
        catchError
        {
            // Building and testing should happen in a subdirectory.
            dir('build')
            {
                // Perform the "build". Since Uranium is Python code, this basically only ensures CMake is setup.
                stage('Build')
                {
                    def branch = env.BRANCH_NAME
                    if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}"))
                    {
                        branch = "master"
                    }

                    // Ensure CMake is setup. Note that since this is Python code we do not really "build" it.
                    def uranium_dir = get_workspace_dir("Ultimaker/Uranium/${branch}")
                    cmake("..", "-DCMAKE_PREFIX_PATH=\"${env.CURA_ENVIRONMENT_PATH}/${branch}\" -DCMAKE_BUILD_TYPE=Release -DURANIUM_DIR=\"${uranium_dir}\"")
                }

                // Try and run the unit tests. If this stage fails, we consider the build to be "unstable".
                stage('Unit Test')
                {
                    if (isUnix())
                    {
                        // For Linux to show everything
                        def branch = env.BRANCH_NAME
                        if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}"))
                        {
                            branch = "master"
                        }
                        def uranium_dir = get_workspace_dir("Ultimaker/Uranium/${branch}")

                        try {
                            sh """
                                cd ..
                                export PYTHONPATH=.:"${uranium_dir}"
                                ${env.CURA_ENVIRONMENT_PATH}/${branch}/bin/pytest -x --verbose --full-trace --capture=no ./tests
                            """
                        } catch(e)
                        {
                            currentBuild.result = "UNSTABLE"
                        }
                    }
                    else
                    {
                        // For Windows
                        try
                        {
                            // This also does code style checks.
                            bat 'ctest -V'
                        } catch(e)
                        {
                            currentBuild.result = "UNSTABLE"
                        }
                    }
                }

                stage('Code Style')
                {
                    if (isUnix())
                    {
                        // For Linux to show everything.
                        // CMake also runs this test, but if it fails then the test just shows "failed" without details of what exactly failed.
                        def branch = env.BRANCH_NAME
                        if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}"))
                        {
                            branch = "master"
                        }
                        def uranium_dir = get_workspace_dir("Ultimaker/Uranium/${branch}")

                        try
                        {
                            sh """
                                cd ..
                                export PYTHONPATH=.:"${uranium_dir}"
                                ${env.CURA_ENVIRONMENT_PATH}/${branch}/bin/python3 run_mypy.py
                            """
                        }
                        catch(e)
                        {
                            currentBuild.result = "UNSTABLE"
                        }
                    }
                }
            }
        }

        // Perform any post-build actions like notification and publishing of unit tests.
        stage('Finalize')
        {
            // Publish the test results to Jenkins.
            junit allowEmptyResults: true, testResults: 'build/junit*.xml'

            notify_build_result(env.CURA_EMAIL_RECIPIENTS, '#cura-dev', ['master', '2.'])
        }
    }
}