ci: gh-actions: attempt to fix mingw env
[m6w6/libmemcached] / .github / workflows / cmake-build-ci.gen
index bee2d0572ade554ed7f8e7a5efd2a00428b9b72a..e4bc67853d3691068c501e74fd6a9714ae8d7166 100755 (executable)
@@ -6,8 +6,10 @@ echo "# Generated file; do not edit!\n";
 const DEF = [
   "os" => "Linux",
   "Linux" => "ubuntu-20.04",
+  "Windows" => "windows-2019",
   "macOS" => "macos-10.15",
   "ubuntu-20.04" => "gnu",
+  "windows-2019" => "msvc",
   "macos-10.15" => "clang",
   "gnu" => [
     "ver" => "cur",
@@ -15,10 +17,20 @@ const DEF = [
     "CXX"  => "g++",
   ],
   "clang" => [
-    "ver" => "apple",
+    "ver" => "cur",
     "CC"  => "clang",
     "CXX"  => "clang++",
   ],
+  "msvc" => [ // dummy
+    "ver" => "cur",
+    "CC" => "msvc",
+    "CXX" => "msvc",
+  ],
+  "mingw" => [ // dummy
+    "ver" => "cur",
+    "CC" => "mingw",
+    "CXX" => "mingw",
+  ]
 ];
 const ENV = [
   "ubuntu-20.04" => [
@@ -74,15 +86,26 @@ const MAP = [
           ]
         ]
       ]
-    ]
+    ],
   ]
 ];
 
 /**
  * @var bool $splat_map false = no splat map, null = default splat map, true = full splat map
  */
-function steps_setenv($splat_map = null) {
-  if ($splat_map !== false) {
+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
+      - name: Prepare environment (MinGW)
+        if: env.CC_VND == 'mingw'
+        run: |
+          echo 'CMAKE_GENERATOR=MinGW Makefiles' | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
+<?php
+  } elseif ($splat_map !== false) {
     foreach (MAP as $os_is => $os_vers) {
       foreach ($os_vers as $os_ver => $cc_vnds_) {
         if (!$splat_map && DEF[DEF["os"]] != $os_ver) continue;
@@ -115,24 +138,47 @@ 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 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 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: >-
+            rsync
+            openssh
+<?php
+  endif;
+  if ($os_vnd != "Windows") :
+?>
       - name: Build memcached
+        if: runner.os != 'Windows'
         run: |
           if test -d memcached
           then
@@ -154,45 +200,91 @@ 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 --config ${{ 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($splat_map = null) {
-  steps_setenv($splat_map);
-  steps_getdeps();
+function steps_package() {
+?>
+      - name: Package
+        env:
+          PUSH_ARTIFACTS_ID: ${{ secrets.PUSH_ARTIFACTS_ID }}
+        if: env.CC_VER == 'cur' && env.CMAKE_BUILD_TYPE == 'Release'
+        run: |
+          cmake --config ${{ 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
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
+<?php
+}
+
+function steps($os_vnd, $splat_map = null) {
+  steps_setenv($os_vnd, $splat_map);
+  steps_getdeps($os_vnd);
   steps_build();
+  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";
 }
+
+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:   <?=DEF[$cc_vnd]["ver"]?> #
+<?php
+}
+
 ?>
 name: cmake-build-ci
 on:
   push:
     paths:
+      - "contrib/**"
       - "include/**"
       - "src/**"
       - "test/**"
       - "CMake*"
+      - "CPack*"
       - ".github/workflows/cmake-build-ci*"
     branches-ignore:
       - gh-pages
@@ -203,12 +295,9 @@ 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"]]]?> #
@@ -221,11 +310,14 @@ jobs:
     name: dbg-new (<?=defaults()?>)
     runs-on: <?=DEF[DEF["os"]]?> #
     env:
-      INSTALL_MEMCACHED:
-      MEMCACHED_PREFIX: /tmp
-      ENABLE_SASL:      "ON"
-      CFLAGS:           "-O0 --coverage"
-      CXXFLAGS:         "-O0 --coverage"
+      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
       - uses: actions/checkout@v2
@@ -233,33 +325,79 @@ jobs:
           repository: memcached/memcached
           path: memcached
           ref: 1.6.7
-<?php steps(); ?>
+<?php steps("Linux"); ?>
       - uses: codecov/codecov-action@v1.0.13
 
   # sanitizer build
-  dbg-san:
-    name: dbg-san (<?=defaults()?>)
+  sanitizer:
     runs-on: <?=DEF[DEF["os"]]?> #
+    strategy:
+      matrix:
+        sanitizer: ['address;undefined', 'thread']
     env:
-      ENABLE_SANITIZERS: "address;undefined"
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      ENABLE_SANITIZERS:  ${{ matrix.sanitizer }}
     steps:
       - uses: actions/checkout@v2
-<?php steps(); ?>
+<?php steps("Linux"); ?>
 
-  # mac build
+  # mac debug
   dbg-mac:
     name: dbg-mac (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
     runs-on: <?=DEF["macOS"]?> #
     env:
-      CFLAGS: -O0 --coverage
-      CXXFLAGS: -O0 --coverage
+      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@v2
-<?php steps(false); ?>
+<?php steps("macOS", false); ?>
       - uses: codecov/codecov-action@v1.0.13
 
-  # release builds
+  # mac release
+  rel-mac:
+    name: rel-mac (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
+    runs-on: <?=DEF["macOS"]?> #
+    env:
+      CMAKE_BUILD_TYPE:   "Release"
+      BUILD_DOCS_MANGZ:   "ON"
+<?php env_override("macOS")?>
+    continue-on-error: true
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          fetch-depth: 0
+<?php steps("macOS", false); ?>
+
+  # windows release builds
+  windows:
+    strategy:
+      fail-fast: false
+      matrix:
+        os_ver: [<?=DEF["Windows"]?>]
+        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@v2
+        with:
+          fetch-depth: 0
+<?php steps("Windows", true); ?>
+
+  # linux release builds
   release:
     strategy:
       fail-fast: false
@@ -270,11 +408,14 @@ jobs:
     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); ?>
+        with:
+          fetch-depth: 0
+<?php steps("Linux", true); ?>