Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Oct 2, 2023
1 parent 58ff4eb commit 2b0605d
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ config = {
"e2e": {
"oCIS-1": {
"earlyFail": True,
"skip": False,
"skip": True,
"tikaNeeded": True,
"featurePaths": [
"tests/e2e/cucumber/features/{smoke,journeys}/*.feature",
],
},
"oCIS-2": {
"earlyFail": True,
"skip": False,
"skip": True,
"featurePaths": [
"tests/e2e/cucumber/features/smoke/{spaces,admin-settings}/*.feature",
],
Expand Down Expand Up @@ -355,20 +355,17 @@ def main(ctx):
return pipelines

def beforePipelines(ctx):
return checkStarlark() + \
licenseCheck(ctx) + \
documentation(ctx) + \
changelog(ctx) + \
pnpmCache(ctx) + \
return pnpmCache(ctx) + \
cacheOcisPipeline(ctx) + \
pipelinesDependsOn(buildCacheWeb(ctx), pnpmCache(ctx)) + \
pipelinesDependsOn(pnpmlint(ctx), pnpmCache(ctx))
pipelinesDependsOn(buildCacheWeb(ctx), pnpmCache(ctx))

def stagePipelines(ctx):
unit_test_pipelines = unitTests(ctx)
e2e_pipelines = e2eTests(ctx)
acceptance_pipelines = acceptance(ctx)
return unit_test_pipelines + pipelinesDependsOn(e2e_pipelines + acceptance_pipelines, unit_test_pipelines)

# return unit_test_pipelines + pipelinesDependsOn(e2e_pipelines + acceptance_pipelines, unit_test_pipelines)
return e2e_pipelines

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

0 comments on commit 2b0605d

Please sign in to comment.