ci: add 8.1
[m6w6/ext-http] / scripts / gen_github_workflow_ci.php
index 3b927ea4c6c5e9cac324e617b0dfffdf565926f7..c23f23ec9598fb1a98f10829f7b2eec991b2b4ab 100755 (executable)
@@ -13,13 +13,14 @@ jobs:
 $gen = include __DIR__ . "/ci/gen-matrix.php";
 $cur = "8.0";
 $job = $gen->github([
-"master" => [
+"next" => [
 // most useful for all additional versions except current
-    "PHP" => ["master"],
+    "PHP" => ["8.1", "master"],
     "enable_debug" => "yes",
     "enable_zts" => "yes",
     "enable_iconv" => "yes",
-], 
+    "TEST_PHP_ARGS" => "-d error_reporting=24575" // ignore E_DEPRECATED
+],
 "cur-none" => [
 // everything disabled for current
     "PHP" => $cur,
@@ -29,18 +30,18 @@ $job = $gen->github([
     "with_http_libcurl_dir" => "no",
     "with_http_libevent_dir" => "no",
     "with_http_libbrotli_dir" => "no",
-], 
+],
 "cur-dbg-zts" => [
 // everything enabled for current, switching debug/zts
     "PHP" => $cur,
     "enable_debug",
     "enable_zts",
     "enable_iconv" => "yes",
-], 
+],
 "cur-cov" => [
 // once everything enabled for current, with coverage
-    "CFLAGS" => "'-O0 -g --coverage'",
-    "CXXFLAGS" => "'-O0 -g --coverage'",
+    "CFLAGS" => "-O0 -g --coverage",
+    "CXXFLAGS" => "-O0 -g --coverage",
     "PHP" => $cur,
     "enable_iconv" => "yes",
     [
@@ -52,13 +53,13 @@ $job = $gen->github([
 ]]);
 foreach ($job as $id => $env) {
     printf("  %s:\n", $id);
-    printf("    name: %s\n", $id);
+    printf("    name: \"%s (%s)\"\n", $id, $env["PHP"]);
     if ($env["PHP"] == "master") {
         printf("    continue-on-error: true\n");
     }
     printf("    env:\n");
     foreach ($env as $key => $val) {
-        printf("      %s: %s\n", $key, $val);
+        printf("      %s: \"%s\"\n", $key, $val);
     }
 ?>
     runs-on: ubuntu-20.04
@@ -76,17 +77,18 @@ foreach ($job as $id => $env) {
             libidn2-0-dev \
             libicu-dev \
             libevent-dev \
-            libbrotli-dev
+            libbrotli-dev \
+            re2c
       - name: Prepare
         run: |
           make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php
           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()