-
Notifications
You must be signed in to change notification settings - Fork 39
Description
Describe your use-case which is not covered by existing documentation.
When following the pipeline as instructed, No such method ,even though plugin is available ( see in bold)
java.lang.NoSuchMethodError: No such DSL method 'tektonCreateRaw' found among steps [_OcAction, _OcContextInit, _OcWatch, ansiColor, archive, bat, build, catchError, checkout, compareVersions, .................swapSpace, tag, teamSlugFilter, tektonCreateRaw, text, textParam, timezone, tmpSpace, toolLocation, triggeredBy, unsecured, untrusted, upstream, url, userSeed, usernameColonPassword, usernamePassword, viewsTabBar, weather, withAnt, x509ClientCert, zip] or globals [currentBuild, env, openshift, params, pipeline, scm]
Not sure what is missing
Reference any relevant documentation, other materials or issues/pull requests that can be used for inspiration.
This is the code snippet which is followed
pipeline {
agent any
stages {
stage('Stage') {
steps {
checkout scm
tektonCreateRaw(inputType: 'FILE', input: '.tekton/pipeline.yaml')
}
}
}
}