-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Valery Piashchynski <[email protected]>
- Loading branch information
Showing
8 changed files
with
332 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: beanstalk_durability | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- stable | ||
pull_request: | ||
branches: | ||
- master | ||
- stable | ||
|
||
jobs: | ||
beanstalk_durability_test: | ||
name: Beanstalk durability plugin (Go ${{ matrix.go }}, PHP ${{ matrix.php }}, OS ${{matrix.os}}) | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 60 | ||
strategy: | ||
matrix: | ||
php: [ "8.2" ] | ||
go: [ stable ] | ||
os: [ "ubuntu-latest" ] | ||
steps: | ||
- name: Set up Go ${{ matrix.go }} | ||
uses: actions/setup-go@v4 # action page: <https://github.com/actions/setup-go> | ||
with: | ||
go-version: ${{ matrix.go }} | ||
|
||
- name: Set up PHP ${{ matrix.php }} | ||
uses: shivammathur/setup-php@v2 # action page: <https://github.com/shivammathur/setup-php> | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: sockets | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
|
||
- name: Init Composer Cache # Docs: <https://git.io/JfAKn#php---composer> | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: cd tests/php_test_files && composer update --prefer-dist --no-progress --ansi | ||
|
||
- name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules> | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-go- | ||
|
||
- name: Install Go dependencies | ||
run: go mod download | ||
|
||
- name: Run golang tests with coverage | ||
run: | | ||
cd tests | ||
docker build -t beanstalk -f env/Dockerfile-beanstalkd.yaml . | ||
docker run -d -p 127.0.0.1:11300:11300 beanstalk | ||
sleep 10 | ||
docker compose -f env/docker-compose-otel.yaml up -d | ||
sleep 30 | ||
mkdir ./coverage-ci | ||
go test -timeout 20m -v -race -cover -tags=debug -failfast -coverpkg=$(cat pkgs.txt) -coverprofile=./coverage-ci/beanstalk_dur.out -covermode=atomic jobs_beanstalk_durability_test.go | ||
- name: Archive code coverage results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage | ||
path: ./tests/coverage-ci/beanstalk_dur.out | ||
|
||
codecov: | ||
name: Upload codecov | ||
runs-on: ubuntu-latest | ||
needs: | ||
- beanstalk_durability_test | ||
|
||
timeout-minutes: 60 | ||
steps: | ||
- name: Download code coverage results | ||
uses: actions/download-artifact@v3 | ||
- run: | | ||
cd coverage | ||
echo 'mode: atomic' > summary.txt | ||
tail -q -n +2 *.out >> summary.txt | ||
sed -i '2,${/roadrunner/!d}' summary.txt | ||
- name: upload to codecov | ||
uses: codecov/codecov-action@v3 # Docs: <https://github.com/codecov/codecov-action> | ||
with: | ||
file: ./coverage/summary.txt | ||
fail_ci_if_error: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
version: '3' | ||
|
||
rpc: | ||
listen: tcp://127.0.0.1:6001 | ||
|
||
server: | ||
command: "php php_test_files/jobs/jobs_ok.php" | ||
relay: "pipes" | ||
relay_timeout: "20s" | ||
|
||
beanstalk: | ||
addr: tcp://127.0.0.1:11400 | ||
timeout: 10s | ||
|
||
logs: | ||
level: error | ||
encoding: console | ||
mode: development | ||
|
||
jobs: | ||
num_pollers: 10 | ||
pipeline_size: 100000 | ||
pool: | ||
num_workers: 10 | ||
max_jobs: 0 | ||
allocate_timeout: 60s | ||
destroy_timeout: 60s | ||
|
||
pipelines: | ||
test-1: | ||
driver: beanstalk | ||
config: | ||
priority: 11 | ||
tube_priority: 1 | ||
tube: default-1 | ||
reserve_timeout: 10s | ||
|
||
test-2: | ||
driver: beanstalk | ||
config: | ||
priority: 11 | ||
tube_priority: 3 | ||
tube: default-2 | ||
reserve_timeout: 10s | ||
|
||
# list of pipelines to be consumed by the server, keep empty if you want to start consuming manually | ||
consume: [ "test-1", "test-2" ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.