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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2018-10-18 18:22:57 +0300
committerGhostkeeper <rubend@tutanota.com>2018-10-18 18:22:57 +0300
commit4e54f13145746e75f2133617eda7a6b188677cb1 (patch)
treeafad7b29ce7a98a2fb6e5ae61f46b5c4f6a1493f /Jenkinsfile
parent05c2349411e84a2b0883412968f3733708c79f9e (diff)
Move shortcut keys test to CMake
So that when you run tests locally, you also test this one.
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 1cb2eea877..3ca803d338 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -12,20 +12,6 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
// If any error occurs during building, we want to catch it and continue with the "finale" stage.
catchError {
- stage('Pre Checks') {
- if (isUnix()) {
- // Check shortcut keys
- try {
- sh """
- echo 'Check for duplicate shortcut keys in all translation files.'
- ${env.CURA_ENVIRONMENT_PATH}/master/bin/python3 scripts/check_shortcut_keys.py
- """
- } catch(e) {
- currentBuild.result = "UNSTABLE"
- }
- }
- }
-
// 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.