Skip to content

Commit e0e8ef5

Browse files
Remove Launchable until they fix their module (#303)
Signed-off-by: Brian J. Murrell <[email protected]>
1 parent 8abd194 commit e0e8ef5

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

vars/functionalTest.groovy

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,6 @@ def call(Map config = [:]) {
8787
params['context'] = context
8888
params['description'] = description
8989

90-
sh label: "Install Launchable",
91-
script: "pip3 install --user --upgrade launchable~=1.0"
92-
93-
withCredentials([string(credentialsId: 'launchable-test', variable: 'LAUNCHABLE_TOKEN')]) {
94-
sh label: "Send build data",
95-
script: '''export PATH=$PATH:$HOME/.local/bin
96-
launchable record build --name ${BUILD_TAG//%2F/-} --source src=.'''
97-
}
98-
9990
if (config.get('test_function', "runTestFunctional") ==
10091
"runTestFunctionalV2") {
10192
runTestFunctionalV2 params

vars/functionalTestPostV2.groovy

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,4 @@ def call(Map config = [:]) {
3535

3636
junit testResults: junit_results
3737

38-
sh label: "Install Launchable",
39-
script: "pip3 install --user --upgrade launchable~=1.0"
40-
41-
withCredentials([string(credentialsId: 'launchable-test', variable: 'LAUNCHABLE_TOKEN')]) {
42-
sh label: "Submit test results to Launchable",
43-
script: 'if ls -l ' + '"' + env.STAGE_NAME + '''"/*/*/xunit1_results.xml 2>/dev/null; then
44-
export PATH=$PATH:$HOME/.local/bin
45-
launchable record tests --build ${BUILD_TAG//%2F/-} pytest ''' +
46-
'"' + env.STAGE_NAME + '''"/*/*/xunit1_results.xml
47-
fi'''
48-
}
4938
}

0 commit comments

Comments
 (0)