File tree Expand file tree Collapse file tree 4 files changed +35
-39
lines changed Expand file tree Collapse file tree 4 files changed +35
-39
lines changed Original file line number Diff line number Diff line change 1+ name : Test container structure
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+
8+ env :
9+ REGISTRY : docker.io
10+ IMAGE_NAME : appwrite/base
11+ TAG : ${{ github.event.release.tag_name }}
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout the repo
18+ uses : actions/checkout@v3
19+
20+ - name : Setup container structure test
21+ run : |
22+ curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
23+ chmod +x container-structure-test-linux-amd64
24+ sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test
25+
26+ - name : Run container structure test
27+ run : |
28+ docker build -t appwrite-base-test .
29+ container-structure-test test --image appwrite-base-test --config tests.yaml
Original file line number Diff line number Diff line change 1+ .idea
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11FROM php:8.2.14-cli-alpine3.19 as compile
22
3- ENV PHP_REDIS_VERSION="5.3.7 " \
3+ ENV PHP_REDIS_VERSION="6.0.2 " \
44 PHP_MONGODB_VERSION="1.16.1" \
55 PHP_SWOOLE_VERSION="v5.1.2" \
66 PHP_IMAGICK_VERSION="3.7.0" \
77 PHP_YAML_VERSION="2.2.3" \
8- PHP_MAXMINDDB_VERSION="v1.11.0 " \
8+ PHP_MAXMINDDB_VERSION="v1.11.1 " \
99 PHP_SCRYPT_VERSION="2.0.1" \
10- PHP_ZSTD_VERSION="0.12 .3" \
11- PHP_BROTLI_VERSION="0.14 .0" \
10+ PHP_ZSTD_VERSION="0.13 .3" \
11+ PHP_BROTLI_VERSION="0.15 .0" \
1212 PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
1313 PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
14- PHP_XDEBUG_VERSION="3.2.2 "
14+ PHP_XDEBUG_VERSION="3.3.1 "
1515
1616RUN \
1717 apk add --no-cache --virtual .deps \
You can’t perform that action at this time.
0 commit comments