Skip to content
This repository was archived by the owner on Jan 15, 2022. It is now read-only.

Commit ef23479

Browse files
bors[bot]rustatian
andauthored
Merge #43
43: release 2.1.7 with updated php vendor dir r=48d90782 a=48d90782 Co-authored-by: Valery Piashchynski <[email protected]>
2 parents a4a4038 + 37b4484 commit ef23479

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/ci-build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ jobs:
5858
- name: Run golang tests
5959
run: |
6060
docker-compose -f ./tests/docker-compose.yml up -d
61-
vendor/bin/spiral-cs check src tests
62-
go mod vendor
6361
composer update
62+
vendor_php/bin/spiral-cs check src tests
6463
go test -v -race -cover -coverprofile=jobs.txt -covermode=atomic
6564
go test -v -race -cover ./broker/amqp -coverprofile=amqp.txt -covermode=atomic
6665
go test -v -race -cover ./broker/ephemeral -coverprofile=ephemeral.txt -covermode=atomic

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.env
33
composer.lock
44
vendor/
5+
vendor_php
56
*.db
67
clover.xml
78
.DS_Store

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ install: all
55
uninstall:
66
rm -f /usr/local/bin/rr-jobs
77
test:
8-
go mod vendor
98
composer update
109
go test -v -race -cover
1110
go test -v -race -cover ./broker/amqp

composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
"Spiral\\Jobs\\": "src/"
2626
}
2727
},
28+
"config": {
29+
"vendor-dir": "vendor_php"
30+
},
2831
"autoload-dev": {
2932
"psr-4": {
3033
"Spiral\\Jobs\\Tests\\": "tests/Jobs/"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/sirupsen/logrus v1.4.2
2020
github.com/spf13/cobra v0.0.6
2121
github.com/spf13/viper v1.6.2
22-
github.com/spiral/roadrunner v1.6.3
22+
github.com/spiral/roadrunner v1.8.0
2323
github.com/streadway/amqp v0.0.0-20181205114330-a314942b2fd9
2424
github.com/stretchr/testify v1.5.1
2525
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect

tests/bootstrap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
ini_set('display_errors', 'stderr');
1414

1515
//Composer
16-
require dirname(__DIR__) . '/vendor/autoload.php';
16+
require dirname(__DIR__) . '/vendor_php/autoload.php';

0 commit comments

Comments
 (0)