Hello, thanks for this useful software.
First of all, sorry if this is not the correct place to post questions.
We are currently considering using project piper.
I am referring to the following URL and trying to perform a build.
However, no matter how many times I run it, I get an error that I cannot unstash within [dockerExecute].
Unstash failed: piper-bin (No such saved stash ‘piper-bin’)<br>Unstash failed: pipelineStepReports (No such saved stash ‘pipelineStepReports’)
It would be great if you could tell me how to call it so that the Unstash failed error does not occur.
※Japanese (language)
お世話になっております。
現在、Project Piper の利用を検討しております。
以下の公式ガイドを参照し、Jenkinsでビルド実行を試みておりますが
何度実行しても[dockerExecute]内でunstashができないというエラーが発生してしまいます。
もし同じような問題に直面されたことのある方がいらっしゃいましたら、
Unstash failedのエラーが発生しないような対処法をご教授いただけますと幸いです。
よろしくお願いいたします。
----
■Official Guide
https://www.project-piper.io/guidedtour/
https://www.project-piper.io/steps/npmExecuteScripts/
■Jenkins run logs 20230906-log.txt@Library('piper-lib-os') _<br>pipeline {<br> agent any<br> environment {<br> NPM_CONFIG_CACHE = "${WORKSPACE}/.npm"<br> }<br> stages {<br> stage("Prepare") {<br> steps {<br> checkout scm<br> setupCommonPipelineEnvironment script:this<br> }<br> }<br> stage("build") {<br> steps {<br> npmExecuteScripts(script: this, runScripts: ['build'])<br> }<br> }<br> post {<br> always {<br> cleanWs()<br> }<br> }<br>} ■package.json
"scripts": { <br> "build": "ui5 build --clean-dest", Thank you!