master 提交的构建 #60823 9b5a7add
 通过 2 秒
Running with gitlab-ci-multi-runner 1.10.7 (bc69744)
Using SSH executor...
/etc/profile: line 78: /source/nodejs: Is a directory
Running on iZm5ecs3ycd0p8nrpfny7nZ via iZm5ecs3ycd0p8nrpfny7nZ...
/etc/profile: line 78: /source/nodejs: Is a directory
Fetching changes...
HEAD is now at 5c9d220 test
From http://114.215.101.231:8099/root/meijiabang
5c9d220..9b5a7ad master -> origin/master
Checking out 9b5a7add as master...
Skipping Git submodules setup
/etc/profile: line 78: /source/nodejs: Is a directory
/etc/profile: line 78: /source/nodejs: Is a directory
/etc/profile: line 78: /source/nodejs: Is a directory
$ cd /alidata/www/fast/meijiabang/
$ git pull
From http://114.215.101.231:8099/root/meijiabang
5c9d220..9b5a7ad master -> origin/master
Updating 5c9d220..9b5a7ad
Fast-forward
application/extra/queue.php | 14 +
composer.json | 3 +-
composer.lock | 101 +++-
vendor/composer/autoload_files.php | 2 +
vendor/composer/autoload_psr4.php | 2 +-
vendor/composer/autoload_static.php | 4 +
vendor/composer/installed.json | 103 ++++
vendor/topthink/think-helper/.gitignore | 3 +
vendor/topthink/think-helper/LICENSE | 201 +++++++
vendor/topthink/think-helper/README.md | 33 ++
vendor/topthink/think-helper/composer.json | 22 +
vendor/topthink/think-helper/src/Collection.php | 651 +++++++++++++++++++++
.../think-helper/src/contract/Arrayable.php | 8 +
.../think-helper/src/contract/Jsonable.php | 8 +
vendor/topthink/think-helper/src/helper.php | 279 +++++++++
vendor/topthink/think-helper/src/helper/Arr.php | 634 ++++++++++++++++++++
vendor/topthink/think-helper/src/helper/Str.php | 234 ++++++++
vendor/topthink/think-queue/.gitignore | 4 +
vendor/topthink/think-queue/LICENSE | 201 +++++++
vendor/topthink/think-queue/README.md | 132 +++++
vendor/topthink/think-queue/composer.json | 32 +
vendor/topthink/think-queue/src/Queue.php | 49 ++
vendor/topthink/think-queue/src/common.php | 36 ++
vendor/topthink/think-queue/src/config.php | 14 +
.../think-queue/src/queue/CallQueuedHandler.php | 36 ++
.../topthink/think-queue/src/queue/Connector.php | 69 +++
vendor/topthink/think-queue/src/queue/Job.php | 213 +++++++
vendor/topthink/think-queue/src/queue/Listener.php | 164 ++++++
.../topthink/think-queue/src/queue/Queueable.php | 46 ++
.../topthink/think-queue/src/queue/ShouldQueue.php | 17 +
vendor/topthink/think-queue/src/queue/Worker.php | 119 ++++
.../think-queue/src/queue/command/Listen.php | 65 ++
.../think-queue/src/queue/command/Restart.php | 31 +
.../think-queue/src/queue/command/Subscribe.php | 46 ++
.../think-queue/src/queue/command/Work.php | 210 +++++++
.../think-queue/src/queue/connector/Database.php | 171 ++++++
.../think-queue/src/queue/connector/Redis.php | 236 ++++++++
.../think-queue/src/queue/connector/Sync.php | 57 ++
.../think-queue/src/queue/connector/Topthink.php | 225 +++++++
.../think-queue/src/queue/job/Database.php | 88 +++
.../topthink/think-queue/src/queue/job/Redis.php | 92 +++
vendor/topthink/think-queue/src/queue/job/Sync.php | 56 ++
.../think-queue/src/queue/job/Topthink.php | 85 +++
43 files changed, 4793 insertions(+), 3 deletions(-)
create mode 100644 application/extra/queue.php
create mode 100644 vendor/topthink/think-helper/.gitignore
create mode 100644 vendor/topthink/think-helper/LICENSE
create mode 100644 vendor/topthink/think-helper/README.md
create mode 100644 vendor/topthink/think-helper/composer.json
create mode 100644 vendor/topthink/think-helper/src/Collection.php
create mode 100644 vendor/topthink/think-helper/src/contract/Arrayable.php
create mode 100644 vendor/topthink/think-helper/src/contract/Jsonable.php
create mode 100644 vendor/topthink/think-helper/src/helper.php
create mode 100644 vendor/topthink/think-helper/src/helper/Arr.php
create mode 100644 vendor/topthink/think-helper/src/helper/Str.php
create mode 100644 vendor/topthink/think-queue/.gitignore
create mode 100644 vendor/topthink/think-queue/LICENSE
create mode 100644 vendor/topthink/think-queue/README.md
create mode 100644 vendor/topthink/think-queue/composer.json
create mode 100644 vendor/topthink/think-queue/src/Queue.php
create mode 100644 vendor/topthink/think-queue/src/common.php
create mode 100644 vendor/topthink/think-queue/src/config.php
create mode 100644 vendor/topthink/think-queue/src/queue/CallQueuedHandler.php
create mode 100644 vendor/topthink/think-queue/src/queue/Connector.php
create mode 100644 vendor/topthink/think-queue/src/queue/Job.php
create mode 100644 vendor/topthink/think-queue/src/queue/Listener.php
create mode 100644 vendor/topthink/think-queue/src/queue/Queueable.php
create mode 100644 vendor/topthink/think-queue/src/queue/ShouldQueue.php
create mode 100644 vendor/topthink/think-queue/src/queue/Worker.php
create mode 100644 vendor/topthink/think-queue/src/queue/command/Listen.php
create mode 100644 vendor/topthink/think-queue/src/queue/command/Restart.php
create mode 100644 vendor/topthink/think-queue/src/queue/command/Subscribe.php
create mode 100644 vendor/topthink/think-queue/src/queue/command/Work.php
create mode 100644 vendor/topthink/think-queue/src/queue/connector/Database.php
create mode 100644 vendor/topthink/think-queue/src/queue/connector/Redis.php
create mode 100644 vendor/topthink/think-queue/src/queue/connector/Sync.php
create mode 100644 vendor/topthink/think-queue/src/queue/connector/Topthink.php
create mode 100644 vendor/topthink/think-queue/src/queue/job/Database.php
create mode 100644 vendor/topthink/think-queue/src/queue/job/Redis.php
create mode 100644 vendor/topthink/think-queue/src/queue/job/Sync.php
create mode 100644 vendor/topthink/think-queue/src/queue/job/Topthink.php
/etc/profile: line 78: /source/nodejs: Is a directory
/etc/profile: line 78: /source/nodejs: Is a directory
/etc/profile: line 78: /source/nodejs: Is a directory
Build succeeded

构建 #60823

运行时间: 2 秒

创建时间:

结束时间:

Runner: #5

提交

分支: master

作者: xwp

信息: test