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

Commit

Permalink
build(swoole): Upgrade to v4.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
k911 committed Jan 30, 2020
1 parent b683a8d commit 448ae7d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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.4.12
- SWOOLE_VERSION=4.4.15

matrix:
include:
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_TAG="7.4-cli-alpine3.10"
ARG COMPOSER_TAG="1.9.1"
ARG PHP_TAG="7.4-cli-alpine3.11"
ARG COMPOSER_TAG="1.9.2"

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.4.12"
ARG SWOOLE_VERSION="4.4.15"
RUN git clone https://github.com/swoole/swoole-src.git --branch "v$SWOOLE_VERSION" --depth 1 && \
cd swoole-src && \
phpize && \
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"
x-env-aliases:
- &DEFAULT_BUILD_ARGS
PHP_TAG: "${PHP_VERSION:-7.4}-cli-alpine${ALPINE_VERSION:-3.10}"
PHP_TAG: "${PHP_VERSION:-7.4}-cli-alpine${ALPINE_VERSION:-3.11}"
PHP_API_VERSION: "${PHP_API_VERSION:-20190902}"
COMPOSER_ARGS: "${COMPOSER_ARGS:-install}"
SWOOLE_VERSION: "${SWOOLE_VERSION:-4.4.12}"
COMPOSER_TAG: "${COMPOSER_TAG:-1.9.1}"
SWOOLE_VERSION: "${SWOOLE_VERSION:-4.4.15}"
COMPOSER_TAG: "${COMPOSER_TAG:-1.9.2}"

services:
releaser:
Expand Down

0 comments on commit 448ae7d

Please sign in to comment.