Skip to content

Commit

Permalink
unskip pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
amrita-shrestha committed Nov 28, 2024
1 parent d4b7b4d commit 31a1f65
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ config = {
"e2e": {
"1": {
"earlyFail": True,
"skip": True,
"skip": False,
"suites": [
"journeys",
"smoke",
Expand All @@ -71,7 +71,7 @@ config = {
},
"3": {
"earlyFail": True,
"skip": True,
"skip": False,
"tikaNeeded": True,
"suites": [
"search",
Expand All @@ -86,7 +86,7 @@ config = {
},
"4": {
"earlyFail": True,
"skip": True,
"skip": False,
"suites": [
"navigation",
"user-settings",
Expand All @@ -95,7 +95,7 @@ config = {
],
},
"app-provider": {
"skip": True,
"skip": False,
"suites": [
"app-provider",
],
Expand All @@ -112,7 +112,7 @@ config = {
},
},
"oidc-refresh-token": {
"skip": True,
"skip": False,
"features": [
"cucumber/features/oidc/refreshToken.feature",
],
Expand All @@ -122,7 +122,7 @@ config = {
},
},
"oidc-iframe": {
"skip": True,
"skip": False,
"features": [
"cucumber/features/oidc/iframeTokenRenewal.feature",
],
Expand All @@ -132,7 +132,7 @@ config = {
},
"ocm": {
"earlyFail": True,
"skip": True,
"skip": False,
"federationServer": True,
"suites": [
"ocm",
Expand Down Expand Up @@ -210,6 +210,9 @@ def main(ctx):

def beforePipelines(ctx):
return checkStarlark() + \
licenseCheck(ctx) + \
documentation(ctx) + \
changelog(ctx) + \
pnpmCache(ctx) + \
cacheOcisPipeline(ctx) + \
pipelinesDependsOn(buildCacheWeb(ctx), pnpmCache(ctx)) + \
Expand All @@ -224,7 +227,7 @@ def stagePipelines(ctx):

e2e_pipelines = e2eTests(ctx)
keycloak_pipelines = e2eTestsOnKeycloak(ctx)
return buildAndTestDesignSystem(ctx) + e2e_pipelines + keycloak_pipelines
return unit_test_pipelines + buildAndTestDesignSystem(ctx) + pipelinesDependsOn(e2e_pipelines + keycloak_pipelines, unit_test_pipelines)

def afterPipelines(ctx):
return build(ctx) + pipelinesDependsOn(notify(), build(ctx))
Expand Down

0 comments on commit 31a1f65

Please sign in to comment.