問題タブ [jenkins-declarative-pipeline]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jenkins - Jenkins 宣言型パイプラインを使用して複数のプラットフォームでビルドおよびテストする方法
簡単にできるはずのことをしようとしていますが、方法がわかりません。
基本的に、私は Jenkins マスター (Linux 上で実行) と 2 つのスレーブ (1 つは Windows 上、もう 1 つは macOS 上) を持っています。
3 つのプラットフォームすべてでプロジェクトをビルドし、3 つのプラットフォームすべてで GTest テストも実行したいと考えています。
テストをビルドして実行できますが、junit ステップでテスト結果が収集されないようです。
ブロックをどこにでも置こうとしましたが、うまくいきpost
ません。post
ブロックを Test ステージまたは の兄弟として配置しようとするとstages
、次のエラーが発生します。
Required context class hudson.FilePath is missing
Perhaps you forgot to surround the code with a step that provides this, such as: node
これはagent none
、post
ブロックが実行場所を認識していないことが原因です。
そのため、テスト段階のステップでブロックをpost
ブロック内に配置しようとしましたが、何もしないようです - コンソール出力にも表示されません。node
parallel
これが私のものJenkinsfile
です:
私は何を間違っていますか?