ci/github: expand mac and win builds
[awesomized/libmemcached] / .github / workflows / cmake-build-ci.gen
index a26c8564761f544b5267c3527accb9864d3d9ea9..7697081e4a7a7594d4ea1287f12762690e413b23 100755 (executable)
@@ -5,85 +5,170 @@ echo "# Generated file; do not edit!\n";
 
 const DEF = [
   "os" => "Linux",
-  "Linux" => "ubuntu-20.04",
-  "macOS" => "macos-10.15",
-  "ubuntu-20.04" => "gnu",
-  "macos-10.15" => "clang",
+
+  "Linux"   => "ubuntu-22.04", "ubuntu-22.04" => "gnu",
+  "Windows" => "windows-2022", "windows-2022" => "msvc",
+  "macOS"   => "macos-12",     "macos-12"     => "clang",
+
   "gnu" => [
-    "ver" => "cur",
     "CC"  => "gcc",
     "CXX"  => "g++",
   ],
   "clang" => [
-    "ver" => "apple",
     "CC"  => "clang",
     "CXX"  => "clang++",
   ],
-];
-const ENV = [
-  "ubuntu-20.04" => [
-    "gnu" => [
-      "new" => [
-        "INSTALL_CC" => "gcc-10",
-        "INSTALL_CXX" => "g++-10",
-      ]
-    ]
+  "msvc" => [
+    "CMAKE_GENERATOR" => "Visual Studio"
   ],
-  "ubuntu-18.04" => [
-    "clang" => [
-      "old" => [
-        "CXXFLAGS" => "-stdlib=libc++"
-      ]
-    ]
+  "mingw" => [
+    "CMAKE_GENERATOR" => "MinGW Makefiles"
   ]
 ];
 const MAP = [
-  'env.OS_VER' => [
-    "ubuntu-20.04" => [
-      'env.CC_VND' => [
-        "gnu" => [
-          'env.CC_VER' => [
-            "new"  => "-10",
-            "cur"  => "-9",
-            "old"  => "-8"
+  "Linux" => [
+    'env.OS_VER' => [
+      "ubuntu-22.04" => [
+        'env.CC_VND' => [
+          "gnu" => [
+            'env.CC_VER' => [
+              "new"  => "-12",
+              "cur"  => "-11",
+              "old"  => "-10",
+            ]
+          ],
+          "clang" => [
+            'env.CC_VER' => [
+              "new"  => "-14",
+              "cur"  => "-13",
+            ]
           ]
-        ],
-        "clang" => [
-          'env.CC_VER' => [
-            "new"  => "-10",
-            "cur"  => "-9",
-            "old"  => "-8"
+        ]
+      ],
+      "ubuntu-20.04" => [
+        'env.CC_VND' => [
+          "gnu" => [
+            'env.CC_VER' => [
+              "new"  => "-10",
+              "cur"  => "-9",
+            ]
+          ],
+          "clang" => [
+            'env.CC_VER' => [
+              "new"  => "-12",
+              "cur"  => "-11",
+              "old"  => "-10"
+            ]
           ]
         ]
-      ]
+      ],
     ],
-    "ubuntu-18.04" => [
-      'env.CC_VND' => [
-        "gnu" => [
-          'env.CC_VER' => [
-            "new"  => "-9",
-            "cur"  => "-8",
-            "old"  => "-7"
+  ],
+  "Windows" => [
+    'env.OS_VER' => [
+      "windows-2022" => [
+        'env.CC_VND' => [
+          "msvc" => [
+            "env.CC_VER" => [
+              "cur" => " 17 2022"
+            ]
+          ],
+          "mingw" => [
+            "env.CC_VER" => [
+              "cur" => ""
+            ]
           ]
-        ],
-        "clang" => [
-          'env.CC_VER' => [
-            "new"  => "-9",
-            "cur"  => "-8",
-            "old"  => "-6.0"
+        ]
+      ],
+      "windows-2019" => [
+        'env.CC_VND' => [
+          "msvc" => [
+            "env.CC_VER" => [
+              "cur" => " 16 2019"
+            ]
+          ],
+          "mingw" => [
+            "env.CC_VER" => [
+              "cur" => ""
+            ]
           ]
         ]
-      ]
+      ],
     ]
-  ]
+  ],
+  "macOS" => []
+];
+const ENV = [
+  "ubuntu-22.04" => [
+    "clang" => [
+      "new" => [
+        "CXXFLAGS" => "-stdlib=libc++",
+        "INSTALL_CXX" => "libc++-14-dev libc++abi-14-dev"
+      ],
+      "cur" => [
+        "CXXFLAGS" => "-stdlib=libc++",
+        "INSTALL_CXX" => "libc++-13-dev libc++abi-13-dev"
+      ],
+    ]
+  ],
+  "ubuntu-20.04" => [
+    "clang" => [
+      "new" => [
+        "CXXFLAGS" => "-stdlib=libc++",
+        "INSTALL_CXX" => "libc++-12-dev libc++abi-12-dev"
+      ],
+      "cur" => [
+        "CXXFLAGS" => "-stdlib=libc++",
+        "INSTALL_CXX" => "libc++-11-dev libc++abi-11-dev"
+      ],
+      "old" => [
+        "CXXFLAGS" => "-stdlib=libc++",
+        "INSTALL_CXX" => "libc++-10-dev libc++abi-10-dev"
+      ],
+    ]
+  ],
 ];
 
+function set_addpath($os_vnd, $paths) {
+  foreach ((array) $paths as $path) if ($os_vnd == "Windows") {
+?>
+          echo "<?=$path?>" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+<?php
+  } else {
+?>
+          echo 'PATH="$PATH:<?=$path?>"' >> ${GITHUB_ENV}
+<?php
+  }
+}
+function step_setenv($os_vnd, $var, $val) {
+  if ($var === "PATH") {
+    return set_addpath($os_vnd, $val);
+  }
+  if ($os_vnd == "Windows") {
+?>
+          echo '<?=$var?>=<?=$val?>' | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
+<?php
+  } else {
+?>
+          echo <?=$var?>="<?=$val?>" >> ${GITHUB_ENV}
+<?php
+  }
+}
+
 /**
  * @var bool $splat_map false = no splat map, null = default splat map, true = full splat map
  */
-function steps_setenv($splat_map = null) {
+function steps_setenv($os_vnd, $splat_map = null) {
+  if ($os_vnd === "Windows") {
+?>
+      - name: Prepare environment (Windows)
+        run: |
+          echo "c:\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+          echo "c:\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+<?php
+  }
   if ($splat_map !== false) {
-    foreach (MAP as $os_is => $os_vers) {
+    foreach (MAP[$os_vnd] as $os_is => $os_vers) {
       foreach ($os_vers as $os_ver => $cc_vnds_) {
         if (!$splat_map && DEF[DEF["os"]] != $os_ver) continue;
         foreach ($cc_vnds_ as $cc_vnd_is => $cc_vnds) {
@@ -91,19 +176,18 @@ function steps_setenv($splat_map = null) {
             if (!$splat_map && DEF[DEF[DEF["os"]]] != $cc_vnd) continue;
             foreach ($cc_vers_ as $cc_ver_is => $cc_vers) {
               foreach ($cc_vers as $cc_ver => $ver) {
-                if (!$splat_map && DEF[DEF[DEF[DEF["os"]]]]["ver"] != $cc_ver) continue;
+                if (!$splat_map && "cur" != $cc_ver) continue;
 ?>
       - name: Prepare environment (<?= "for $cc_ver $cc_vnd on $os_ver" ?>)
         if: (<?="$os_is=='$os_ver') && ($cc_vnd_is=='$cc_vnd') && ($cc_ver_is=='$cc_ver'"?>)
         run: |
-          echo CC="<?=DEF[$cc_vnd]["CC"] . $ver?>" >> ${GITHUB_ENV}
-          echo CXX="<?=DEF[$cc_vnd]["CXX"] . $ver?>" >> ${GITHUB_ENV}
 <?php
+                foreach (DEF[$cc_vnd] as $env => $val) {
+                  step_setenv($os_vnd, $env, $val . $ver);
+                }
                 if (isset(ENV[$os_ver][$cc_vnd][$cc_ver])) {
                   foreach (ENV[$os_ver][$cc_vnd][$cc_ver] as $env => $val) {
-?>
-          echo <?=$env?>="<?=$val?>" >> ${GITHUB_ENV}
-<?php
+                    step_setenv($os_vnd, $env, $val);
                   }
                 }
               }
@@ -115,30 +199,57 @@ function steps_setenv($splat_map = null) {
   }
 }
 
-function steps_getdeps() {
+function steps_getdeps($os_vnd) {
+?>
+      - name: Install dependencies (<?=$os_vnd?>)
+        if: runner.os == '<?=$os_vnd?>'
+<?php
+  if ($os_vnd === "Linux") :
 ?>
-      - name: Install dependencies (Linux)
-        if: runner.os == 'Linux'
         run: |
-          sudo apt-get install \
+          sudo apt-get update -y
+          sudo apt-get install -my \
             libevent-dev \
             libsasl2-dev \
+            libtbb-dev \
+            python3-sphinx \
             ${INSTALL_MEMCACHED} \
             ${INSTALL_CC} ${INSTALL_CXX}
           sudo systemctl stop memcached || true
-      - name: Install dependencies (Mac)
-        if: runner.os == 'macOS'
+<?php
+  endif;
+  if ($os_vnd === "macOS") :
+?>
         run: |
-          brew install bison flex ${INSTALL_MEMCACHED}
+          brew install bison flex libevent pkg-config sphinx-doc ${INSTALL_MEMCACHED}
           brew services stop memcached || true
           echo MEMCACHED_BINARY="/usr/local/bin/memcached" >> ${GITHUB_ENV}
+<?php
+  endif;
+  if ($os_vnd === "Windows") :
+?>
+        uses: msys2/setup-msys2@v2
+        with:
+          release: false
+          path-type: inherit
+          install: >-
+            bison
+            flex
+            rsync
+            openssh
+<?php
+  endif;
+  if ($os_vnd != "Windows") :
+?>
       - name: Build memcached
+        if: runner.os != 'Windows'
         run: |
           if test -d memcached
           then
             cd memcached
             ./autogen.sh
-            ./configure CFLAGS="-O2 -pipe" \
+            cp configure{,.old} && sed -e 's/-Werror//g' <configure.old >configure
+            ./configure CFLAGS="-O2 -pipe -fcommon" \
               --prefix=${MEMCACHED_PREFIX} \
               --enable-sasl \
               --enable-sasl-pwdb \
@@ -154,66 +265,97 @@ function steps_getdeps() {
             echo MEMCACHED_BINARY="${MEMCACHED_PREFIX}/bin/memcached" >> ${GITHUB_ENV}
           fi
 <?php
+  endif;
 }
 
 function steps_build() {
 ?>
       - name: Generate build tree (${{ env.CMAKE_BUILD_TYPE }})
-        run: cmake -S . -B build
+        run: cmake -DCMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -S . -B build
       - name: Build all with ${{ env.CXX }} ${{ env.CXXFLAGS }}
-        run: make -C build -j2 all
+        run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2
+<?php
+}
+
+function steps_test() {
+?>
       - name: Test
-        run: make -C build -j2 test
+        if: env.BUILD_TESTING == 'ON'
+        run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target test
       - name: Install
-        run: make -C build -j2 install DESTDIR=/tmp
+        if: env.BUILD_TESTING == 'ON'
+        run: cmake --install build --config ${{ env.CMAKE_BUILD_TYPE }} --prefix /tmp
       - name: Failed tests log
-        if: ${{ failure() }}
+        if: ${{ env.BUILD_TESTING == 'ON' && failure() }}
         run: cat build/Testing/Temporary/LastTest.log || true
 <?php
 }
 
-function steps_notify() {
+function steps_package() {
 ?>
-      - name: Notify Gitter (success)
-        if: ${{ success() }}
+      - name: Package
+        env:
+          PUSH_ARTIFACTS_ID: ${{ secrets.PUSH_ARTIFACTS_ID }}
+        if: env.PUSH_ARTIFACTS_ID != '' && env.CMAKE_BUILD_TYPE == 'Release'
         run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=info" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [success](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
-      - name: Notify Gitter (failure)
-        if: ${{ failure() }}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=error" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [failure](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
+          cmake -DCMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -S . -B build
+          cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
+          cmake -DCPACK_COMPONENT_INSTALL=ON build
+          cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
+          cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
+<?php
+}
+
+function steps_notify($os_vnd) {
+?>
+      - name: Notify Gitter
+        env:
+          GITTER: ${{ secrets.GITTER }}
+        if: (success() || failure()) && env.GITTER != ''
+        run: bash .github/notify-gitter.sh ${{ job.status }}
 <?php
 }
 
-function steps($splat_map = null) {
-  steps_setenv($splat_map);
-  steps_getdeps();
+function steps($os_vnd, $splat_map = null) {
+  steps_setenv($os_vnd, $splat_map);
+  steps_getdeps($os_vnd);
   steps_build();
-  steps_notify();
+  steps_test();
+  steps_package();
+  steps_notify($os_vnd);
 }
 
-function defaults() {
-  $os_ver = DEF[DEF["os"]];
+function defaults($os_vnd = DEF["os"]) {
+  $os_ver = DEF[$os_vnd];
   $cc_vnd = DEF[$os_ver];
-  $cc_ver = DEF[$cc_vnd]["ver"];
-  return "$os_ver, $cc_vnd, $cc_ver";
+  return "$os_ver, $cc_vnd";
 }
+
+function env_override($os_vnd, $cc_vnd = null) {
+  isset($cc_vnd) or $cc_vnd = DEF[DEF[$os_vnd]];
+?>
+      OS_VND:   <?=$os_vnd?> #
+      OS_VER:   <?=DEF[$os_vnd]?> #
+      CC_VND:   <?=$cc_vnd?> #
+      CC_VER:   cur
+<?php
+}
+
 ?>
 name: cmake-build-ci
 on:
+  workflow_dispatch:
+  release:
+    types: [published]
   push:
     paths:
+      - ".github/workflows/cmake-build-ci*"
+      - "CMake*"
+      - "CPack*"
+      - "contrib/**"
       - "include/**"
       - "src/**"
       - "test/**"
-      - "CMake*"
-      - ".github/workflows/cmake-build-ci*"
     branches-ignore:
       - gh-pages
   pull_request:
@@ -223,82 +365,158 @@ on:
 env:
   # defaults
   INSTALL_MEMCACHED:  memcached
-  CMAKE_BUILD_TYPE:   Debug
-  BUILD_TESTING:      "ON"
-  ENABLE_SASL:        "OFF"
+  ENABLE_SASL:        "OFF" # ^ almost no memcached distribution package has built in sasl support
   ENABLE_HASH_HSIEH:  "ON"
   ENABLE_DTRACE:      "OFF"
-  VERBOSE:            "ON"
   OS_VND:   <?=DEF["os"]?> #
   OS_VER:   <?=DEF[DEF["os"]]?> #
   CC_VND:   <?=DEF[DEF[DEF["os"]]]?> #
-  CC_VER:   <?=DEF[DEF[DEF[DEF["os"]]]]["ver"]?> #
+  CC_VER:   cur
 
 jobs:
 
-  # new memcached
-  dbg-new:
-    name: dbg-new (<?=defaults()?>)
+  # sanitizer
+  debug-sanitizer:
+    name: debug sanitizer
+    runs-on: <?=DEF[DEF["os"]]?> #
+    strategy:
+      matrix:
+        sanitizer: ['address;undefined', 'thread']
+    env:
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      ENABLE_SANITIZERS:  ${{ matrix.sanitizer }}
+    steps:
+      - uses: actions/checkout@v3
+<?php steps("Linux"); ?>
+
+# memcached
+  debug-memcached:
+    name: debug memcached
     runs-on: <?=DEF[DEF["os"]]?> #
+    continue-on-error: true
+    strategy:
+      matrix:
+        memcached: ['master', '1.6.17', '1.6.9', '1.5.22', '1.5.6']
     env:
-      INSTALL_MEMCACHED:
-      MEMCACHED_PREFIX: /tmp
-      ENABLE_SASL:      "ON"
-      CFLAGS:           "-O0 --coverage"
-      CXXFLAGS:         "-O0 --coverage"
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      INSTALL_MEMCACHED:  ""
+      MEMCACHED_PREFIX:   "/tmp"
+      ENABLE_SASL:        "ON"
     steps:
-      - uses: actions/checkout@v2
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
+      - uses: actions/checkout@v3
         with:
           repository: memcached/memcached
           path: memcached
-          ref: 1.6.7
-<?php steps(); ?>
-      - uses: codecov/codecov-action@v1.0.13
+          ref: ${{ matrix.memcached }}
+<?php steps("Linux"); ?>
 
-  # sanitizer build
-  dbg-san:
-    name: dbg-san (<?=defaults()?>)
+# coverage linux
+  debug-coverage-linux:
+    name: debug coverage (<?=defaults()?>)
     runs-on: <?=DEF[DEF["os"]]?> #
     env:
-      ENABLE_SANITIZERS: "address;undefined"
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      CFLAGS:             "-O0 --coverage"
+      CXXFLAGS:           "-O0 --coverage"
+      INSTALL_MEMCACHED:  ""
+      MEMCACHED_PREFIX:   "/tmp"
+      ENABLE_SASL:        "ON"
     steps:
-      - uses: actions/checkout@v2
-<?php steps(); ?>
+      - uses: actions/checkout@v3
+      - uses: actions/checkout@v3
+        with:
+          repository: memcached/memcached
+          path: memcached
+          ref: 1.6.7
+<?php steps("Linux"); ?>
+      - uses: codecov/codecov-action@v3
+
 
-  # mac build
-  dbg-mac:
-    name: dbg-mac (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
+  # coverage mac
+  debug-coverage-mac:
+    name: debug coverage (<?=defaults("macOS")?>)
     runs-on: <?=DEF["macOS"]?> #
     env:
-      CFLAGS:   -O0 --coverage
-      CXXFLAGS: -O0 --coverage
-      OS_VND:   macOS
-      OS_VER:   <?=DEF["macOS"]?> #
-      CC_VND:   <?=DEF[DEF["macOS"]]?> #
-      CC_VER:   <?=DEF[DEF[DEF["macOS"]]]["ver"]?> #
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      CFLAGS:             "-O0 --coverage"
+      CXXFLAGS:           "-O0 --coverage"
+<?php env_override("macOS")?>
+    continue-on-error: true
+    steps:
+      - uses: actions/checkout@v3
+<?php steps("macOS", false); ?>
+      - uses: codecov/codecov-action@v3
+
+  # mac release builds
+  mac:
+    name: release
+    strategy:
+      fail-fast: false
+      matrix:
+        os_ver: [macos-12, macos-11, macos-10.15]
+    runs-on: ${{ matrix.os_ver }}
+    env:
+      CMAKE_BUILD_TYPE:   "Release"
+      BUILD_DOCS_MANGZ:   "ON"
+<?php env_override("macOS")?>
     continue-on-error: true
     steps:
-      - uses: actions/checkout@v2
-<?php steps(false); ?>
-      - uses: codecov/codecov-action@v1.0.13
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+<?php steps("macOS", false); ?>
+
+  # windows release builds
+  windows:
+    name: release
+    strategy:
+      fail-fast: false
+      matrix:
+        os_ver: [windows-2022, windows-2019]
+        cc_vnd: [msvc, mingw]
+        cc_ver: [cur]
+    runs-on: ${{ matrix.os_ver }}
+    continue-on-error: true
+    env:
+      CMAKE_BUILD_TYPE: "Release"
+      OS_VND: Windows
+      OS_VER: ${{ matrix.os_ver }}
+      CC_VND: ${{ matrix.cc_vnd }}
+      CC_VER: ${{ matrix.cc_ver }}
+    steps:
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+<?php steps("Windows", true); ?>
 
-  # release builds
+  # linux release builds
   release:
     strategy:
       fail-fast: false
       matrix:
-        os_ver: [ubuntu-20.04, ubuntu-18.04]
+        os_ver: [ubuntu-22.04, ubuntu-20.04]
         cc_vnd: [gnu, clang]
         cc_ver: [new, cur, old]
     runs-on: ${{ matrix.os_ver }}
     continue-on-error: ${{ matrix.cc_vnd == 'clang' }}
     env:
-      CMAKE_BUILD_TYPE: Release
+      CMAKE_BUILD_TYPE: "Release"
+      BUILD_DOCS_MANGZ: "ON"
       OS_VND: Linux
       OS_VER: ${{ matrix.os_ver }}
       CC_VND: ${{ matrix.cc_vnd }}
       CC_VER: ${{ matrix.cc_ver }}
     steps:
-      - uses: actions/checkout@v2
-<?php steps(true); ?>
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+<?php steps("Linux", true); ?>