Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 2 additions & 89 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ OSIXIA_OPENLDAP = "osixia/openldap"
PLUGINS_GIT_ACTION = "plugins/git-action:1"
PLUGINS_S3 = "plugins/s3"
PLUGINS_S3_CACHE = "plugins/s3-cache:1"
PLUGINS_SLACK = "plugins/slack:1"
POTTAVA_PROXY = "pottava/proxy"
SELENIUM_STANDALONE_CHROME_DEBUG = "selenium/standalone-chrome-debug:3.141.59-oxygen"
SELENIUM_STANDALONE_FIREFOX_DEBUG = "selenium/standalone-firefox-debug:3.8.1"
Expand Down Expand Up @@ -55,10 +54,6 @@ dir = {
}

config = {
"rocketchat": {
"channel": "server",
"from_secret": "rocketchat_talk_webhook",
},
"branches": [
"master",
],
Expand Down Expand Up @@ -135,41 +130,6 @@ config = {
"ls -l /var/cache/samba",
],
},
"external-windows": {
"phpVersions": [
DEFAULT_PHP_VERSION,
],
"databases": [
"sqlite",
],
"externalTypes": [
"windows",
],
"coverage": True,
"extraEnvironment": {
"SMB_WINDOWS_HOST": {
"from_secret": "SMB_WINDOWS_HOST",
},
"SMB_WINDOWS_USERNAME": {
"from_secret": "SMB_WINDOWS_USERNAME",
},
"SMB_WINDOWS_PWD": {
"from_secret": "SMB_WINDOWS_PWD",
},
"SMB_WINDOWS_DOMAIN": {
"from_secret": "SMB_WINDOWS_DOMAIN",
},
"SMB_WINDOWS_SHARE_NAME": {
"from_secret": "SMB_WINDOWS_SHARE_NAME",
},
},
"extraCommandsBeforeTestRun": [
"ls -l /var/cache",
"mkdir /var/cache/samba",
"ls -l /var/cache",
"ls -l /var/cache/samba",
],
},
"external-other": {
"phpVersions": [
DEFAULT_PHP_VERSION,
Expand Down Expand Up @@ -546,10 +506,7 @@ def main(ctx):
afterCoverageTests = afterCoveragePipelines(ctx)
dependsOn(coverageTests, afterCoverageTests)

after = afterPipelines(ctx)
dependsOn(afterCoverageTests + nonCoverageTests + stages, after)

return initial + before + coverageTests + afterCoverageTests + nonCoverageTests + stages + after
return initial + before + coverageTests + afterCoverageTests + nonCoverageTests + stages

def initialPipelines(ctx):
return dependencies(ctx) + checkStarlark() + checkGitCommit()
Expand Down Expand Up @@ -588,14 +545,7 @@ def stagePipelines(ctx):
return litmusPipelines + davPipelines + acceptancePipelines

def afterCoveragePipelines(ctx):
return [
sonarAnalysis(ctx),
]

def afterPipelines(ctx):
return [
notify(),
]
return []

def dependencies(ctx):
pipelines = []
Expand Down Expand Up @@ -2024,43 +1974,6 @@ def sonarAnalysis(ctx, phpVersion = DEFAULT_PHP_VERSION):

return result

def notify():
result = {
"kind": "pipeline",
"type": "docker",
"name": "chat-notifications",
"clone": {
"disable": True,
},
"steps": [
{
"name": "notify-rocketchat",
"image": PLUGINS_SLACK,
"settings": {
"webhook": {
"from_secret": config["rocketchat"]["from_secret"],
},
"channel": config["rocketchat"]["channel"],
},
},
],
"depends_on": [],
"trigger": {
"ref": [
"refs/tags/**",
],
"status": [
"success",
"failure",
],
},
}

for branch in config["branches"]:
result["trigger"]["ref"].append("refs/heads/%s" % branch)

return result

def databaseService(db):
dbName = getDbName(db)
if (dbName == "mariadb") or (dbName == "mysql"):
Expand Down
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Table of Contents

* [Changelog for unreleased](#changelog-for-owncloud-core-unreleased-unreleased)
* [Changelog for 10.16.0](#changelog-for-owncloud-core-10160-2025-10-23)
* [Changelog for 10.15.3](#changelog-for-owncloud-core-10153-2025-07-04)
* [Changelog for 10.15.2](#changelog-for-owncloud-core-10152-2025-03-11)
* [Changelog for 10.15.1](#changelog-for-owncloud-core-10151-2025-03-03)
Expand All @@ -25,12 +25,12 @@
* [Changelog for 10.4.1](#changelog-for-owncloud-core-1041-2020-03-30)
* [Changelog for 10.4.0](#changelog-for-owncloud-core-1040-2020-02-10)
* [Changelog for 10.3.2](#changelog-for-owncloud-core-1032-2019-12-04)
# Changelog for ownCloud Core [unreleased] (UNRELEASED)
# Changelog for ownCloud Core [10.16.0] (2025-10-23)

The following sections list the changes in ownCloud core unreleased relevant to
The following sections list the changes in ownCloud core 10.16.0 relevant to
ownCloud admins and users.

[unreleased]: https://github.com/owncloud/core/compare/v10.15.3...master
[10.16.0]: https://github.com/owncloud/core/compare/v10.15.3...v10.16.0

## Summary

Expand Down
3 changes: 0 additions & 3 deletions DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,3 @@ https://owncloud.com/contribute/design/
3. Make sure create publicly accessible assets
4. Add your contributions to an issue and we promise we will review your contribution carefully and foster discussions

**We encourage you to:**

- Get in touch with the team by joining our public #server channel on [talk.owncloud.com](https://talk.owncloud.com/channel/server)
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading