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

Commit

Permalink
chore(swoole): upgrade swoole extension to v4.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
k911 committed Jan 2, 2021
1 parent c113a35 commit f0c1162
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ orbs:
executors:
k911-docker-client:
docker:
- image: k911/docker-client:19.03.13-compose
- image: k911/docker-client:20.10.1-compose
working_directory: ~/workdir

k911-release-version:
docker:
- image: docker.io/k911/release-version-script:0.3.1
- image: docker.io/k911/release-version-script:0.3.3
working_directory: /usr/src/app

aliases:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cache:
env:
global:
- COMPOSER_ARGS=install
- SWOOLE_VERSION=4.5.9
- SWOOLE_VERSION=4.5.10

matrix:
include:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_TAG="7.4-cli-alpine3.12"
ARG COMPOSER_TAG="2.0.7"
ARG COMPOSER_TAG="2.0.8"

FROM php:$PHP_TAG as ext-builder
RUN docker-php-source extract && \
Expand All @@ -22,7 +22,7 @@ RUN pecl install xdebug && \

FROM ext-builder as ext-swoole
RUN apk add --no-cache git
ARG SWOOLE_VERSION="4.5.9"
ARG SWOOLE_VERSION="4.5.10"
RUN if $(echo "$SWOOLE_VERSION" | grep -qE '^[4-9]\.[0-9]+\.[0-9]+$'); then SWOOLE_GIT_REF="v$SWOOLE_VERSION"; else SWOOLE_GIT_REF="$SWOOLE_VERSION"; fi && \
git clone https://github.com/swoole/swoole-src.git --branch "$SWOOLE_GIT_REF" --depth 1 && \
cd swoole-src && \
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
version: "3.6"
version: "3.8"
x-env-aliases:
- &DEFAULT_BUILD_ARGS
PHP_TAG: "${PHP_VERSION:-7.4}-cli-alpine${ALPINE_VERSION:-3.12}"
PHP_API_VERSION: "${PHP_API_VERSION:-20190902}"
COMPOSER_ARGS: "${COMPOSER_ARGS:-install}"
SWOOLE_VERSION: "${SWOOLE_VERSION:-4.5.9}"
COMPOSER_TAG: "${COMPOSER_TAG:-2.0.7}"
SWOOLE_VERSION: "${SWOOLE_VERSION:-4.5.10}"
COMPOSER_TAG: "${COMPOSER_TAG:-2.0.8}"

volumes:
coverage: {}
Expand Down

0 comments on commit f0c1162

Please sign in to comment.