cpack: artifacts
[m6w6/libmemcached] / .github / workflows / cmake-build-ci.gen
index 3aa1e0376b54c288b6b18eb11fbefe2576c3d5fa..cdffbb111fba5c7ad880daff4d7806451336125a 100755 (executable)
@@ -3,12 +3,13 @@
 
 echo "# Generated file; do not edit!\n";
 
-const PRE = "     ";
 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",
@@ -16,25 +17,29 @@ const DEF = [
     "CXX"  => "g++",
   ],
   "clang" => [
-    "ver" => "apple",
+    "ver" => "cur",
     "CC"  => "clang",
     "CXX"  => "clang++",
   ],
+  "msvc" => [ // dummy
+    "ver" => "cur",
+    "CC" => "msvc",
+    "CXX" => "msvc",
+  ],
 ];
-const APT = [
+const ENV = [
   "ubuntu-20.04" => [
     "gnu" => [
       "new" => [
-        "CC" => "gcc-10",
-        "CXX" => "g++-10",
+        "INSTALL_CC" => "gcc-10",
+        "INSTALL_CXX" => "g++-10",
       ]
     ]
   ],
   "ubuntu-18.04" => [
     "clang" => [
       "old" => [
-        "CC" => "clang-7",
-        "CXX" => "clang-7"
+        "CXXFLAGS" => "-stdlib=libc++"
       ]
     ]
   ]
@@ -72,11 +77,20 @@ const MAP = [
           'env.CC_VER' => [
             "new"  => "-9",
             "cur"  => "-8",
-            "old"  => "-7"
+            "old"  => "-6.0"
           ]
         ]
       ]
-    ]
+    ],
+    "windows-2019" => [
+      'env.CC_VND' => [
+        "msvc" => [
+          'env.CC_VER' => [
+            "cur" => "2019",
+          ],
+        ],
+      ],
+    ],
   ]
 ];
 
@@ -95,18 +109,18 @@ function steps_setenv($splat_map = null) {
               foreach ($cc_vers as $cc_ver => $ver) {
                 if (!$splat_map && DEF[DEF[DEF[DEF["os"]]]]["ver"] != $cc_ver) continue;
 ?>
-<?=PRE?> - name: Prepare environment (<?= "for $cc_ver $cc_vnd on $os_ver" ?>)
-<?=PRE?>   if: (<?="$os_is=='$os_ver') && ($cc_vnd_is=='$cc_vnd') && ($cc_ver_is=='$cc_ver'"?>)
-<?=PRE?>   run: |
-<?=PRE?>     echo CC=<?=DEF[$cc_vnd]["CC"] . $ver?> >> ${GITHUB_ENV}
-<?=PRE?>     echo CXX=<?=DEF[$cc_vnd]["CXX"] . $ver?> >> ${GITHUB_ENV}
+      - 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
-                if (isset(APT[$os_ver][$cc_vnd][$cc_ver])) {
-                  $dep = APT[$os_ver][$cc_vnd][$cc_ver];
+                if (isset(ENV[$os_ver][$cc_vnd][$cc_ver])) {
+                  foreach (ENV[$os_ver][$cc_vnd][$cc_ver] as $env => $val) {
 ?>
-<?=PRE?>     echo INSTALL_CC='<?=$dep["CC"]?>' >> ${GITHUB_ENV}
-<?=PRE?>     echo INSTALL_CXX='<?=$dep["CXX"]?>' >> ${GITHUB_ENV}
+          echo <?=$env?>="<?=$val?>" >> ${GITHUB_ENV}
 <?php
+                  }
                 }
               }
             }
@@ -119,36 +133,95 @@ function steps_setenv($splat_map = null) {
 
 function steps_getdeps() {
 ?>
-<?=PRE?> - name: Install dependencies (Linux)
-<?=PRE?>   if: runner.os == 'Linux'
-<?=PRE?>   run: |
-<?=PRE?>     sudo apt-get install \
-<?=PRE?>       libevent-dev \
-<?=PRE?>       libsasl2-dev \
-<?=PRE?>       ${INSTALL_MEMCACHED} \
-<?=PRE?>       ${INSTALL_CC} ${INSTALL_CXX}
-<?=PRE?>     sudo systemctl stop memcached || true
-<?=PRE?> - name: Install dependencies (Mac)
-<?=PRE?>   if: runner.os == 'macOS'
-<?=PRE?>   run: |
-<?=PRE?>     brew install bison flex ${INSTALL_MEMCACHED}
-<?=PRE?>     brew services stop memcached || true
+      - name: Install dependencies (Linux)
+        if: runner.os == 'Linux'
+        run: |
+          sudo apt-get install \
+            libevent-dev \
+            libsasl2-dev \
+            libtbb-dev \
+            python3-m2r \
+            python3-sphinx \
+            ${INSTALL_MEMCACHED} \
+            ${INSTALL_CC} ${INSTALL_CXX}
+          sudo systemctl stop memcached || true
+      - name: Install dependencies (Mac)
+        if: runner.os == 'macOS'
+        run: |
+          brew install bison flex sphinx-doc ${INSTALL_MEMCACHED}
+          brew services stop memcached || true
+          echo MEMCACHED_BINARY="/usr/local/bin/memcached" >> ${GITHUB_ENV}
+      - name: Build memcached
+        run: |
+          if test -d memcached
+          then
+            cd memcached
+            ./autogen.sh
+            ./configure CFLAGS="-O2 -pipe" \
+              --prefix=${MEMCACHED_PREFIX} \
+              --enable-sasl \
+              --enable-sasl-pwdb \
+              --disable-coverage \
+              --disable-dependency-tracking \
+              --disable-docs \
+              --disable-extstore \
+              --disable-option-checking \
+              ;
+            make -j2
+            make install
+            cd ..
+            echo MEMCACHED_BINARY="${MEMCACHED_PREFIX}/bin/memcached" >> ${GITHUB_ENV}
+          fi
 <?php
 }
 
 function steps_build() {
 ?>
-<?=PRE?> - name: Generate build tree (${{ env.CMAKE_CONFIG_TYPE }})
-<?=PRE?>   run: cmake -S . -B build
-<?=PRE?> - name: Build all with ${{ env.CXX }} ${{ env.CXXFLAGS }}
-<?=PRE?>   run: make -C build -j2 all
-<?=PRE?> - name: Test
-<?=PRE?>   run: make -C build -j2 test
-<?=PRE?> - name: Install
-<?=PRE?>   run: make -C build -j2 install DESTDIR=.
-<?=PRE?> - name: Failed tests log
-<?=PRE?>   if: ${{ failure() }}
-<?=PRE?>   run: cat build/Testing/Temporary/LastTest.log || true
+      - name: Generate build tree (${{ env.CMAKE_BUILD_TYPE }})
+        run: cmake -S . -B build
+      - name: Build all with ${{ env.CXX }} ${{ env.CXXFLAGS }}
+        run: cmake --build build -j2
+      - name: Test
+        run: cmake --build build -j2 --target test
+      - name: Install
+        run: cmake --build build -j2 --target install -- DESTDIR=/tmp
+      - name: Failed tests log
+        if: ${{ failure() }}
+        run: cat build/Testing/Temporary/LastTest.log || true
+<?php
+}
+
+function steps_package() {
+?>
+      - name: Package
+        env:
+          PUSH_ARTIFACTS_ID: ${{ secrets.PUSH_ARTIFACTS_ID }}
+        if: env.OS_VND!='Windows' && env.CC_VER=='cur' && env.CMAKE_BUILD_TYPE=='Release'
+        run: |
+          cmake -DENABLE_SASL=ON -DBUILD_DOCS_MANGZ=ON -S . -B build
+          cmake --build build -j2 --target package -- VERBOSE=
+          cmake -DCPACK_COMPONENT_INSTALL=ON build
+          cmake --build build -j2 --target package -- VERBOSE=
+          cmake --build build -j2 --target push-artifacts -- VERBOSE=
+<?php
+}
+
+function steps_notify() {
+?>
+      - name: Notify Gitter (success)
+        if: ${{ success() }}
+        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}})"
 <?php
 }
 
@@ -156,23 +229,38 @@ function steps($splat_map = null) {
   steps_setenv($splat_map);
   steps_getdeps();
   steps_build();
+  steps_package();
+  steps_notify();
 }
 
-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) {
+?>
+        OS_VND:   <?=$os_vnd?> #
+        OS_VER:   <?=DEF[$os_vnd]?> #
+        CC_VND:   <?=DEF[DEF[$os_vnd]]?> #
+        CC_VER:   <?=DEF[DEF[DEF[$os_vnd]]]["ver"]?> #
+<?php
+}
+
 ?>
 name: cmake-build-ci
 on:
   push:
-    paths-ignore:
-      - "docs/**"
+    paths:
+      - "include/**"
+      - "src/**"
+      - "test/**"
+      - "CMake*"
+      - ".github/workflows/cmake-build-ci*"
     branches-ignore:
       - gh-pages
-      - v1.x
   pull_request:
     branches:
       - master
@@ -180,12 +268,9 @@ on:
 env:
   # defaults
   INSTALL_MEMCACHED:  memcached
-  CMAKE_BUILD_TYPE:   Debug
-  BUILD_TESTING:      "ON"
-  ENABLE_SASL:        "OFF"
+  ENABLE_SASL:        "ON"
   ENABLE_HASH_HSIEH:  "ON"
   ENABLE_DTRACE:      "OFF"
-  VERBOSE:            "ON"
   OS_VND:   <?=DEF["os"]?> #
   OS_VER:   <?=DEF[DEF["os"]]?> #
   CC_VND:   <?=DEF[DEF[DEF["os"]]]?> #
@@ -194,14 +279,17 @@ env:
 jobs:
 
   # new memcached
-  ci-new:
-    name: ci-dbg (<?=defaults()?>, memcached-1.6)
+  dbg-new:
+    name: dbg-new (<?=defaults()?>)
     runs-on: <?=DEF[DEF["os"]]?> #
     env:
-      INSTALL_MEMCACHED:
-      MEMCACHED_PREFIX: /tmp
-      MEMCACHED_BINARY: /tmp/bin/memcached
-      ENABLE_SASL:      "ON"
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      CFLAGS:             "-O0 --coverage"
+      CXXFLAGS:           "-O0 --coverage"
+      INSTALL_MEMCACHED:  ""
+      MEMCACHED_PREFIX:   "/tmp"
     steps:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
@@ -209,59 +297,103 @@ jobs:
           repository: memcached/memcached
           path: memcached
           ref: 1.6.7
-<?php steps_setenv(); ?>
-<?php steps_getdeps(); ?>
-      - name: Build memcached
-        run: |
-          cd memcached
-          ./autogen.sh
-          ./configure CFLAGS="-O2 -pipe" \
-            --prefix=${MEMCACHED_PREFIX} \
-            --enable-sasl \
-            --enable-sasl-pwdb \
-            --disable-docs \
-            --disable-coverage \
-            --disable-dependency-tracking
-          make -j2
-          make install
-          cd ..
-<?php steps_build(); ?>
+<?php steps(); ?>
+      - uses: codecov/codecov-action@v1.0.13
 
   # sanitizer build
-  ci-san:
-    name: ci-dbg (<?=defaults()?>, sanitizers)
+  dbg-san:
+    name: dbg-san (<?=defaults()?>)
     runs-on: <?=DEF[DEF["os"]]?> #
     env:
-      ENABLE_SANITIZERS: "address;undefined"
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      ENABLE_SANITIZERS:  "address;undefined"
     steps:
       - uses: actions/checkout@v2
 <?php steps(); ?>
 
-  # coverage build
-  ci-cov:
-    name: ci-dbg (<?=defaults()?>, coverage)
+  # thread sanitizer build
+  dbg-tsan:
+    name: dbg-tsan (<?=defaults()?>)
     runs-on: <?=DEF[DEF["os"]]?> #
     env:
-      CFLAGS: -O0 --coverage
-      CXXFLAGS: -O0 --coverage
+      CMAKE_BUILD_TYPE:   "Debug"
+      BUILD_TESTING:      "ON"
+      VERBOSE:            "ON"
+      ENABLE_SANITIZERS:  "thread"
     steps:
       - uses: actions/checkout@v2
 <?php steps(); ?>
-      - uses: codecov/codecov-action@v1.0.13
 
-  # mac build
-  ci-mac:
-    name: ci-dbg (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
+  # mac debug
+  dbg-mac:
+    name: dbg-mac (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
     runs-on: <?=DEF["macOS"]?> #
+    env:
+      CMAKE_BUILD_TYPE:   "Debug"
+      ENABLE_SASL:        "OFF"
+      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); ?>
+      - uses: codecov/codecov-action@v1.0.13
+
+  # mac release
+  rel-mac:
+    name: rel-mac (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
+    runs-on: <?=DEF["macOS"]?> #
     env:
-      MEMCACHED_BINARY: /usr/local/bin/memcached
+      ENABLE_SASL:        "OFF"
+      BUILD_DOCS_MANGZ:   "ON"
+<?php env_override("macOS")?>
+    continue-on-error: true
     steps:
-      - uses actions/checkout@v2
+      - uses: actions/checkout@v2
 <?php steps(false); ?>
 
+  # win build
+  win-msvc:
+    name: win-msvc (<?=DEF["Windows"]?>, <?=DEF[DEF["Windows"]]?>, <?=DEF[DEF[DEF["Windows"]]]["ver"]?>)
+    runs-on: <?=DEF["Windows"]?> #
+    env:
+      ENABLE_SASL:      "OFF"
+      BISON_ROOT:       "C:/msys64/usr"
+      FLEX_ROOT:        "C:/msys64/usr"
+<?php env_override("Windows")?>
+    continue-on-error: true
+    defaults:
+      run:
+        shell: msys2 {0}
+    steps:
+      - uses: actions/checkout@v2
+      - uses: msys2/setup-msys2@v2
+        with:
+          release: false
+          path-type: inherit
+          install: >-
+            rsync
+            openssh
+      - name: Generate build tree (${{ env.CMAKE_BUILD_TYPE }})
+        run: cmake --config ${{ env.CMAKE_BUILD_TYPE }} -S . -B build
+      - name: Build all with ${{ env.CC_VND }}
+        run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }}
+      - name: Install
+        run: cmake --install build --prefix installed --config ${{ env.CMAKE_BUILD_TYPE }}
+      - name: Package
+        env:
+          PUSH_ARTIFACTS_ID: ${{ secrets.PUSH_ARTIFACTS_ID }}
+        run: |
+          cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} --target package
+          cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} --target push-artifacts
+
   # release builds
-  ci-rel:
+  release:
     strategy:
       fail-fast: false
       matrix:
@@ -271,7 +403,7 @@ jobs:
     runs-on: ${{ matrix.os_ver }}
     continue-on-error: ${{ matrix.cc_vnd == 'clang' }}
     env:
-      CMAKE_BUILD_TYPE: Release
+      BUILD_DOCS_MANGZ: "ON"
       OS_VND: Linux
       OS_VER: ${{ matrix.os_ver }}
       CC_VND: ${{ matrix.cc_vnd }}