Skip to content

Commit

Permalink
TINY-10569: Update jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jscasca committed Apr 9, 2024
1 parent 4a2afc3 commit 9648a02
Showing 1 changed file with 4 additions and 27 deletions.
31 changes: 4 additions & 27 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!groovy
@Library('waluigi@feature/TINY-10569') _
@Library('waluigi@release/7') _

mixedBeehiveFlow(
testPrefix: 'Tiny-Vue',
testDirs: [ "src/test/ts/atomic", "src/test/ts/browser" ],
platforms: [
[ browser: 'chrome', headless: true ],
[ browser: 'firefox', provider: 'aws', buckets: 1 ],
[ browser: 'safari', provider: 'lambdatest', os: 'macOS Sonoma', buckets: 1 ]
[ browser: 'firefox', provider: 'aws' ],
[ browser: 'safari', provider: 'lambdatest' ]
],
customSteps: {
stage("update storybook") {
Expand All @@ -21,27 +21,4 @@ mixedBeehiveFlow(
}
}
}
)



// #!groovy
// @Library('waluigi@release/7') _

// beehiveFlowBuild(
// test: {
// bedrockBrowsers(testDirs: [ "src/test/ts/atomic", "src/test/ts/browser" ])
// },
// customSteps: {
// stage("update storybook") {
// def status = beehiveFlowStatus()
// if (status.branchState == 'releaseReady' && status.isLatest) {
// sshagent (credentials: ['3e856116-029e-4c8d-b57d-593b2fba3cb2']) {
// exec('yarn storybook-to-ghpages')
// }
// } else {
// echo "Skipping as is not latest release"
// }
// }
// }
// )
)

0 comments on commit 9648a02

Please sign in to comment.