使用管道删除jenkins中的旧工件

时间:2017-06-13 08:43:07

标签: jenkins jenkins-pipeline devops

有时候我有一些失败的版本,为什么?

@media (max-width: 350px){
  .options  {order: 3; flex:0 0 100%;}
  .container {
    flex-wrap: wrap;
  }
}

1 个答案:

答案 0 :(得分:1)

我忘记了我的解决方案:)

stage('Clear old artifacts'){
    bat """set errorlevel=0 && cd D:/Jenkins/jobs/xxx/builds && for /f "skip=3 eol=: delims=" %%F in ('dir /b /ad-ld /o-d *') do @rmdir /S /Q %%F"""
}