This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import jenkins.model.Jenkins | |
| import com.cloudbees.hudson.plugins.folder.Folder | |
| import hudson.model.Job | |
| import groovy.json.JsonSlurper | |
| def prefix = "7.11" | |
| def targetValue = "7.11.8.CR1" | |
| def targetOpValue = "7.11.8.OPR.1.CR1" | |
| def testSuitepattern = "claire/operator" // Could be for example: "ats-test-suite/main-tests" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| # 1. Projekt z predmetu IPP, parse.php | |
| # Autor: Samuel Gajdos | |
| # Rok: 2020 | |
| //Pre chybne vypisy | |
| ini_set('display_errors', 'stderr'); | |
| //definicia hodnot chyb | |
| const erLS = 23; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - name: Run and check command "{{command}}" | |
| ansible.builtin.shell: ./check_oc_command.py "{{check}}" "$({{command}})" "{{command}}" | |
| async: 500 | |
| poll: 0 | |
| args: | |
| executable: /bin/bash | |
| register: script_output | |
| failed_when: "'FAILED' in script_output" |