Skip to content

Commit

Permalink
[to-be-dropped] skip pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Jan 3, 2023
1 parent 851df75 commit e5076de
Showing 1 changed file with 47 additions and 58 deletions.
105 changes: 47 additions & 58 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -60,44 +60,44 @@ dirs = {
config = {
"modules": [
# if you add a module here please also add it to the root level Makefile
"services/app-provider",
"services/app-registry",
"services/audit",
"services/auth-basic",
"services/auth-bearer",
"services/auth-machine",
"services/frontend",
"services/gateway",
"services/graph",
"services/groups",
"services/idm",
"services/idp",
"services/nats",
"services/notifications",
"services/ocdav",
"services/ocs",
"services/proxy",
"services/search",
"services/settings",
"services/sharing",
"services/storage-system",
"services/storage-publiclink",
"services/storage-shares",
"services/storage-users",
"services/store",
"services/thumbnails",
"services/users",
"services/web",
"services/webdav",
"ocis-pkg",
"ocis",
# "services/app-provider",
# "services/app-registry",
# "services/audit",
# "services/auth-basic",
# "services/auth-bearer",
# "services/auth-machine",
# "services/frontend",
# "services/gateway",
# "services/graph",
# "services/groups",
# "services/idm",
# "services/idp",
# "services/nats",
# "services/notifications",
# "services/ocdav",
# "services/ocs",
# "services/proxy",
# "services/search",
# "services/settings",
# "services/sharing",
# "services/storage-system",
# "services/storage-publiclink",
# "services/storage-shares",
# "services/storage-users",
# "services/store",
# "services/thumbnails",
# "services/users",
# "services/web",
# "services/webdav",
# "ocis-pkg",
# "ocis",
],
"cs3ApiTests": {
"skip": False,
"skip": True,
"earlyFail": True,
},
"wopiValidatorTests": {
"skip": False,
"skip": True,
"earlyFail": True,
},
"localApiTests": {
Expand Down Expand Up @@ -132,16 +132,16 @@ config = {
},
"uiTests": {
"filterTags": "@ocisSmokeTest",
"skip": False,
"skip": True,
"skipExceptParts": [],
"earlyFail": True,
},
"e2eTests": {
"skip": False,
"skip": True,
"earlyFail": True,
},
"settingsUITests": {
"skip": False,
"skip": True,
"earlyFail": True,
},
"parallelApiTests": {
Expand Down Expand Up @@ -250,23 +250,12 @@ def main(ctx):

test_pipelines = \
cancelPreviousBuilds() + \
codestyle(ctx) + \
buildWebCache(ctx) + \
[buildOcisBinaryForTesting(ctx)] + \
cacheCoreReposForTesting(ctx) + \
testOcisModules(ctx) + \
testPipelines(ctx)

build_release_pipelines = \
[licenseCheck(ctx)] + \
dockerReleases(ctx) + \
binaryReleases(ctx) + \
[releaseSubmodule(ctx)]
build_release_pipelines = []

build_release_helpers = [
changelog(),
docs(),
]
build_release_helpers = []

test_pipelines.append(
pipelineDependsOn(
Expand All @@ -290,15 +279,15 @@ def main(ctx):
)

# always append notification step
pipelines.append(
pipelineDependsOn(
notify(),
pipelines,
),
)

pipelines += checkStarlark()
pipelineSanityChecks(ctx, pipelines)
# pipelines.append(
# pipelineDependsOn(
# notify(),
# pipelines,
# ),
# )

# pipelines += checkStarlark()
# pipelineSanityChecks(ctx, pipelines)
return pipelines

def cachePipeline(name, steps):
Expand Down

0 comments on commit e5076de

Please sign in to comment.