Skip to content

Commit 25af4d8

Browse files
owncloudersNiraj Acharya
authored andcommitted
[tx] updated from transifex
1 parent eed971f commit 25af4d8

File tree

30 files changed

+176
-1632
lines changed

30 files changed

+176
-1632
lines changed

.drone.star

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ def beforePipelines(ctx):
213213
changelog(ctx) + \
214214
pnpmCache(ctx) + \
215215
cacheOcisPipeline(ctx) + \
216+
skipUnchangedPackageTestSuits() + \
216217
pipelinesDependsOn(buildCacheWeb(ctx), pnpmCache(ctx)) + \
217218
pipelinesDependsOn(pnpmlint(ctx), pnpmCache(ctx))
218219

@@ -256,6 +257,35 @@ def pnpmCache(ctx):
256257
},
257258
}]
258259

260+
def skipUnchangedPackageTestSuits():
261+
if ("full-ci" in ctx.build.title.lower()):
262+
return []
263+
return [{
264+
"kind": "pipeline",
265+
"type": "docker",
266+
"name": "get-unchanged-package-suits",
267+
"workspace": {
268+
"base": dir["base"],
269+
"path": config["app"],
270+
},
271+
"steps": [{
272+
"name": "e2e-tests-playwright",
273+
"image": OC_CI_NODEJS_IMAGE,
274+
"commands": [
275+
"node tests/drone/testfilter.js",
276+
"cat .drone.env",
277+
],
278+
}],
279+
"trigger": {
280+
"ref": [
281+
"refs/heads/master",
282+
"refs/heads/stable-*",
283+
"refs/tags/**",
284+
"refs/pull/**",
285+
],
286+
},
287+
}]
288+
259289
def pnpmlint(ctx):
260290
pipelines = []
261291

@@ -294,7 +324,7 @@ def pnpmlint(ctx):
294324

295325
pipelines.append(result)
296326

297-
return pipelines
327+
return []
298328

299329
def build(ctx):
300330
pipelines = []
@@ -483,6 +513,8 @@ def unitTests(ctx):
483513
"git fetch fork",
484514
]
485515

516+
return []
517+
486518
return [{
487519
"kind": "pipeline",
488520
"type": "docker",

packages/web-app-preview/l10n/.tx/config

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/web-app-preview/l10n/translations.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/web-app-preview/package.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)