summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorBo-Yi Wu <appleboy.tw@gmail.com>2019-02-23 09:16:34 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2019-02-23 09:16:34 +0800
commit035c82aec4bb280baf0e6a7cc20a414626ec405f (patch)
tree3a6dd5e27ccff3682704ad4afa6307eca4545583 /.drone.yml
parent4a2fbbeb101555129ab83f972c41936113f1f6c2 (diff)
downloadgitea-035c82aec4bb280baf0e6a7cc20a414626ec405f.tar.gz
gitea-035c82aec4bb280baf0e6a7cc20a414626ec405f.zip
feat(docker): speed up docker build. (#6159)
* feat(docker): speed up docker build. * feat: add docker dryrun * fix: remove docker username and password if dryrun
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index bd33d21382..26b3304064 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -281,12 +281,22 @@ pipeline:
event: [ push ]
branch: [ master ]
+ docker-dryrun:
+ image: plugins/docker:17.12
+ pull: true
+ repo: gitea/gitea
+ cache_from: gitea/gitea
+ dry_run: true
+ when:
+ event: [ pull_request ]
+
docker:
image: plugins/docker:17.12
pull: true
secrets: [ docker_username, docker_password ]
repo: gitea/gitea
tags: [ '${DRONE_BRANCH##release/v}' ]
+ cache_from: gitea/gitea
when:
event: [ push ]
branch: [ release/* ]
@@ -296,6 +306,7 @@ pipeline:
secrets: [ docker_username, docker_password ]
pull: true
repo: gitea/gitea
+ cache_from: gitea/gitea
default_tags: true
when:
event: [ push, tag ]
kport/38630/stable30'>backport/38630/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/public.php
blob: 767295b98db100476f1119488443df88191a3835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
$RUNTIME_NOAPPS = true;

try {

	require_once 'lib/base.php';
	OC::checkMaintenanceMode();
	OC::checkSingleUserMode();
	if (!isset($_GET['service'])) {
		header('HTTP/1.0 404 Not Found');
		exit;
	}
	$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
	if(is_null($file)) {
		header('HTTP/1.0 404 Not Found');
		exit;
	}

	$parts=explode('/', $file, 2);
	$app=$parts[0];

	OC_Util::checkAppEnabled($app);
	OC_App::loadApp($app);
	OC_User::setIncognitoMode(true);

	require_once OC_App::getAppPath($app) .'/'. $parts[1];

} catch (Exception $ex) {
	//show the user a detailed error page
	OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
	\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
	OC_Template::printExceptionErrorPage($ex);
}