Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
E
extensions.typo3.org
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
59
Issues
59
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
services
T
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
01765b31
Unverified
Commit
01765b31
authored
Mar 04, 2017
by
Sascha Marcel Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moves ci scripts to subfolder, adds deployer configuration
parent
a7e1ad0a
Pipeline
#67
failed with stages
in 1 minute and 41 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
106 additions
and
29 deletions
+106
-29
.gitlab-ci.yml
.gitlab-ci.yml
+5
-5
.gitlab-ci/deployer/deploy.php
.gitlab-ci/deployer/deploy.php
+64
-0
.gitlab-ci/deployer/servers.yml
.gitlab-ci/deployer/servers.yml
+12
-0
.gitlab-ci/scripts
.gitlab-ci/scripts
+0
-0
.gitmodules
.gitmodules
+1
-1
composer.lock
composer.lock
+24
-23
No files found.
.gitlab-ci.yml
View file @
01765b31
...
...
@@ -15,9 +15,9 @@ build:
GIT_STRATEGY
:
"
clone"
GIT_SUBMODULE_STRATEGY
:
"
recursive"
script
:
-
./.gitlab-ci/composer.sh config store-auths
false
-
./.gitlab-ci/composer.sh config http-basic.git-t3o.typo3.org gitlab-ci-token ${CI_BUILD_TOKEN}
-
./.gitlab-ci/composer.sh install
-
./.gitlab-ci/
scripts/
composer.sh config store-auths
false
-
./.gitlab-ci/
scripts/
composer.sh config http-basic.git-t3o.typo3.org gitlab-ci-token ${CI_BUILD_TOKEN}
-
./.gitlab-ci/
scripts/
composer.sh install
artifacts
:
paths
:
-
./
...
...
@@ -27,7 +27,7 @@ build:
deploy-master
:
stage
:
deploy
script
:
-
./.gitlab-ci/deployer.sh ${CI_BUILD_REF_NAME}
-
./.gitlab-ci/
scripts/
deployer.sh ${CI_BUILD_REF_NAME}
environment
:
name
:
master
url
:
https://t3o-master.typo3.org/
...
...
@@ -38,7 +38,7 @@ deploy-master:
deploy-develop
:
stage
:
deploy
script
:
-
./.gitlab-ci/
deployer.sh
${CI_BUILD_REF_NAME}
-
./.gitlab-ci/
scripts/deployer.sh -f/src/data/etc/deployer/ter/deploy.php deploy
${CI_BUILD_REF_NAME}
environment
:
name
:
develop
url
:
https://t3o-develop.typo3.org/
...
...
.gitlab-ci/deployer/deploy.php
0 → 100644
View file @
01765b31
<?php
namespace
Deployer
;
require_once
'/composer/vendor/deployer/deployer/recipe/common.php'
;
require_once
'/composer/vendor/deployer/recipes/rsync.php'
;
$sharedDirectories
=
[
'fileadmin'
,
'uploads'
,
'.well-known'
];
set
(
'shared_dirs'
,
$sharedDirectories
);
$sharedFiles
=
[
'.htaccess'
,
'typo3conf/LocalConfiguration.php'
,
];
set
(
'shared_files'
,
$sharedFiles
);
$writeableDirectories
=
[
'typo3temp'
,
'fileadmin'
,
'uploads'
];
set
(
'writable_dirs'
,
$writeableDirectories
);
$exclude
=
[
'.gitignore'
,
'.git'
,
'Readme.rst'
,
'Readme.txt'
,
'Upgrading.rst'
,
'Upgrading.txt'
,
'README'
,
'*.example'
,
'AdditionalConfiguration.sample.php'
];
set
(
'rsync'
,
[
'exclude'
=>
array_merge
(
$sharedDirectories
,
$sharedFiles
,
$exclude
),
'exclude-file'
=>
false
,
'include'
=>
[],
'include-file'
=>
false
,
'filter'
=>
[],
'filter-file'
=>
false
,
'filter-perdir'
=>
false
,
'flags'
=>
'az'
,
'options'
=>
[
'delete'
],
'timeout'
=>
300
]);
set
(
'rsync_src'
,
'/src/html/'
);
set
(
'keep_releases'
,
10
);
serverList
(
'/src/.gitlab-ci/deployer/servers.yml'
);
task
(
'deploy'
,
[
'deploy:prepare'
,
'deploy:release'
,
'rsync:warmup'
,
'rsync'
,
'deploy:shared'
,
'deploy:writable'
,
'deploy:symlink'
,
'cleanup'
]);
.gitlab-ci/deployer/servers.yml
0 → 100644
View file @
01765b31
master
:
host
:
extensions.typo3.org
port
:
22179
user
:
extensions
forward_agent
:
true
deploy_path
:
~/ci/
develop
:
host
:
extensions-dev.typo3.org
port
:
22179
user
:
extensionsdev
forward_agent
:
true
deploy_path
:
~/ci/
scripts
@
57323530
Compare
57323530
...
57323530
File moved
.gitmodules
View file @
01765b31
[submodule ".gitlab-ci"]
path = .gitlab-ci
path = .gitlab-ci
/scripts
url = https://github.com/torvitas/docker-scripts.git
composer.lock
View file @
01765b31
...
...
@@ -4,6 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"hash": "26982d9f82bef372c305c1222157d6cb",
"content-hash": "ef31fc60ecb77d0d1f9bdc79ed26c3c6",
"packages": [
{
...
...
@@ -68,7 +69,7 @@
"solr",
"typo3"
],
"time": "2016-12-14
T08:52:44+00:00
"
"time": "2016-12-14
08:52:44
"
},
{
"name": "cogpowered/finediff",
...
...
@@ -119,7 +120,7 @@
"string",
"text"
],
"time": "2014-05-19
T10:25:02+00:00
"
"time": "2014-05-19
10:25:02
"
},
{
"name": "dmitryd/typo3-realurl",
...
...
@@ -184,7 +185,7 @@
"cms",
"typo3"
],
"time": "2017-02-13
T00:00:00+
00:00"
"time": "2017-02-13
00:
00:00"
},
{
"name": "doctrine/instantiator",
...
...
@@ -238,7 +239,7 @@
"constructor",
"instantiate"
],
"time": "2015-06-14
T21:17:01+00:00
"
"time": "2015-06-14
21:17:01
"
},
{
"name": "helhum/typo3-console",
...
...
@@ -323,7 +324,7 @@
"console",
"typo3"
],
"time": "2017-01-12
T01:21:41+00:00
"
"time": "2017-01-12
01:21:41
"
},
{
"name": "helhum/typo3-console-plugin",
...
...
@@ -378,7 +379,7 @@
"plugin",
"typo3 console"
],
"time": "2017-01-26
T11:55:03+00:00
"
"time": "2017-01-26
11:55:03
"
},
{
"name": "mso/idna-convert",
...
...
@@ -428,7 +429,7 @@
"idna",
"php"
],
"time": "2016-01-06
T21:05:46+00:00
"
"time": "2016-01-06
21:05:46
"
},
{
"name": "pear/http_request2",
...
...
@@ -487,7 +488,7 @@
"http",
"request"
],
"time": "2016-02-13
T20:20:39+00:00
"
"time": "2016-02-13
20:20:39
"
},
{
"name": "pear/net_url2",
...
...
@@ -548,7 +549,7 @@
"uri",
"url"
],
"time": "2016-04-18
T22:24:01+00:00
"
"time": "2016-04-18
22:24:01
"
},
{
"name": "pear/pear_exception",
...
...
@@ -603,7 +604,7 @@
"keywords": [
"exception"
],
"time": "2015-02-10
T20:07:52+00:00
"
"time": "2015-02-10
20:07:52
"
},
{
"name": "psr/http-message",
...
...
@@ -653,7 +654,7 @@
"request",
"response"
],
"time": "2016-08-06
T14:39:51+00:00
"
"time": "2016-08-06
14:39:51
"
},
{
"name": "psr/log",
...
...
@@ -700,7 +701,7 @@
"psr",
"psr-3"
],
"time": "2016-10-10
T12:19:37+00:00
"
"time": "2016-10-10
12:19:37
"
},
{
"name": "swiftmailer/swiftmailer",
...
...
@@ -754,7 +755,7 @@
"mail",
"mailer"
],
"time": "2017-02-13
T07:52:53+00:00
"
"time": "2017-02-13
07:52:53
"
},
{
"name": "symfony/console",
...
...
@@ -815,7 +816,7 @@
],
"description": "Symfony Console Component",
"homepage": "https://symfony.com",
"time": "2017-02-06
T12:04:06+00:00
"
"time": "2017-02-06
12:04:06
"
},
{
"name": "symfony/debug",
...
...
@@ -872,7 +873,7 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
"time": "2016-07-30
T07:22:48+00:00
"
"time": "2016-07-30
07:22:48
"
},
{
"name": "symfony/finder",
...
...
@@ -921,7 +922,7 @@
],
"description": "Symfony Finder Component",
"homepage": "https://symfony.com",
"time": "2017-01-02
T20:30:24+00:00
"
"time": "2017-01-02
20:30:24
"
},
{
"name": "symfony/polyfill-mbstring",
...
...
@@ -980,7 +981,7 @@
"portable",
"shim"
],
"time": "2016-11-14
T01:06:16+00:00
"
"time": "2016-11-14
01:06:16
"
},
{
"name": "symfony/process",
...
...
@@ -1029,7 +1030,7 @@
],
"description": "Symfony Process Component",
"homepage": "https://symfony.com",
"time": "2017-02-16
T14:07:22+00:00
"
"time": "2017-02-16
14:07:22
"
},
{
"name": "t3o/t3olayout",
...
...
@@ -1037,7 +1038,7 @@
"source": {
"type": "git",
"url": "https://git-t3o.typo3.org/t3o/t3olayout.git",
"reference": "
433079e18b86f8fa63ae547c202c9b58efc1757e
"
"reference": "
2b98e1df2e6fff33d780967c674800e3a7ba7ce1
"
},
"type": "typo3-cms-extension",
"autoload": {
...
...
@@ -1053,7 +1054,7 @@
"keywords": [
"TYPO3 CMS"
],
"time": "2017-03-02
11:41:14
"
"time": "2017-03-02
21:01:30
"
},
{
"name": "typo3/class-alias-loader",
...
...
@@ -1111,7 +1112,7 @@
"classloader",
"composer"
],
"time": "2015-10-06
T10:25:44+00:00
"
"time": "2015-10-06
10:25:44
"
},
{
"name": "typo3/cms",
...
...
@@ -1310,7 +1311,7 @@
"extbase",
"typo3"
],
"time": "2017-02-28
T10:42:40+00:0
0"
"time": "2017-02-28
10:42:4
0"
},
{
"name": "typo3/cms-composer-installers",
...
...
@@ -1378,7 +1379,7 @@
"installer",
"typo3"
],
"time": "2016-07-05
T09:38:42+00:00
"
"time": "2016-07-05
09:38:42
"
}
],
"packages-dev": [],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment