Browse Source

disable install ext and split job

Shao Yu-Lung (Allen) 4 years ago
parent
commit
0718a9b823
1 changed files with 18 additions and 3 deletions
  1. 18 3
      .github/workflows/main-ci.yml

+ 18 - 3
.github/workflows/main-ci.yml

@@ -9,12 +9,12 @@ on:
   - cron: '0 0 * * 0'
 
 jobs:
-  build:
+  build-php:
     runs-on: ubuntu-latest
     strategy:
       matrix:
         php_version: ["7.2", "7.3", "7.4", "8.0"]
-        service: [php-fpm, php-worker, workspace, laravel-horizon, 'nginx redis mysql mariadb percona minio mongo']
+        service: [php-fpm, php-worker, workspace, laravel-horizon]
     steps:
     - uses: actions/checkout@v2
     - name: Build the Docker image
@@ -22,7 +22,22 @@ jobs:
         PHP_VERSION: ${{ matrix.php_version }}
       run: |
         cp env-example .env
-        sed -i -- '201,272s/=false/=true/g' .env
+        # sed -i -- '201,272s/=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:
+      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 }}