gh-actions: ci: fix script location
authorMichael Wallner <mike@php.net>
Tue, 12 Jan 2021 18:02:14 +0000 (19:02 +0100)
committerMichael Wallner <mike@php.net>
Tue, 12 Jan 2021 18:02:14 +0000 (19:02 +0100)
.github/workflows/ci.yml
scripts/gen_github_workflow_ci.php

index fa754789e89715cb0084cab140f9c54b36c6bb63..04253c443a771a19a6364e3b2d968aa19b91a077 100644 (file)
@@ -37,10 +37,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 
   cur-none-0:
     name: cur-none-0
@@ -74,10 +74,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 
   cur-dbg-zts-0:
     name: cur-dbg-zts-0
@@ -108,10 +108,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 
   cur-dbg-zts-1:
     name: cur-dbg-zts-1
@@ -142,10 +142,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 
   cur-dbg-zts-2:
     name: cur-dbg-zts-2
@@ -176,10 +176,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 
   cur-dbg-zts-3:
     name: cur-dbg-zts-3
@@ -210,10 +210,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 
   cur-cov-0:
     name: cur-cov-0
@@ -247,10 +247,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
       - name: Coverage
         if: success()
         run: |
@@ -289,10 +289,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
       - name: Coverage
         if: success()
         run: |
@@ -331,10 +331,10 @@ jobs:
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
       - name: Coverage
         if: success()
         run: |
index 384ff6687b5f414537e4f96a5901d88e7287d493..f714bbcd7cf20fe089cd6e8fec2f9c01325d2fbb 100755 (executable)
@@ -83,10 +83,10 @@ foreach ($job as $id => $env) {
           make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master
       - name: Build
         run: |
-          make -f travis/pecl/Makefile ext PECL=http
+          make -f scripts/ci/Makefile ext PECL=http
       - name: Test
         run: |
-          make -f travis/pecl/Makefile test
+          make -f scripts/ci/Makefile test
 <?php if (isset($env["CFLAGS"]) && strpos($env["CFLAGS"], "--coverage") != false) : ?>
       - name: Coverage
         if: success()