build all

This commit is contained in:
Shao Yu-Lung (Allen) 2021-03-17 18:16:54 +08:00
parent 2edb139367
commit 2c3b7a762e
1 changed files with 15 additions and 16 deletions

View File

@ -14,8 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# php_version: ["7.2", "7.3", "7.4", "8.0"]
php_version: ["8.0"]
php_version: ["7.2", "7.3", "7.4", "8.0"]
service: [php-fpm, php-worker, workspace, laravel-horizon]
steps:
- uses: actions/checkout@v2
@ -41,17 +40,17 @@ jobs:
sed -i -- 's/IONCUBE=true/IONCUBE=false/g' .env
docker-compose build ${{ matrix.service }}
# build-other:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# service: ['nginx', 'redis', 'mysql', 'mariadb', 'percona', 'minio', 'mongo']
# steps:
# - uses: actions/checkout@v2
# - name: Build the Docker image
# run: |
# cp env-example .env
# sed -i -- 's/=false/=true/g' .env
# sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
# sed -i -- 's/PHPDBG=true/PHPDBG=false/g' .env
# docker-compose build ${{ matrix.service }}
build-other:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
service: ['nginx', 'redis', 'mysql', 'mariadb', 'percona', 'minio', 'mongo']
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: |
cp env-example .env
sed -i -- 's/=false/=true/g' .env
sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
docker-compose build ${{ matrix.service }}