ci: gh-actions: mingw: install git
[m6w6/libmemcached] / .github / workflows / cmake-build-ci.gen
index 0859cf405c22dbd7eb24af2a03a37146031cb340..60cf68d0d01009bb26bf083b03329ee954bf9f07 100755 (executable)
@@ -26,6 +26,11 @@ const DEF = [
     "CC" => "msvc",
     "CXX" => "msvc",
   ],
+  "mingw" => [ // dummy
+    "ver" => "cur",
+    "CC" => "mingw",
+    "CXX" => "mingw",
+  ]
 ];
 const ENV = [
   "ubuntu-20.04" => [
@@ -82,15 +87,6 @@ const MAP = [
         ]
       ]
     ],
-    "windows-2019" => [
-      'env.CC_VND' => [
-        "msvc" => [
-          'env.CC_VER' => [
-            "cur" => "2019",
-          ],
-        ],
-      ],
-    ],
   ]
 ];
 
@@ -136,11 +132,10 @@ function steps_getdeps() {
       - 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-m2r \
             python3-sphinx \
             ${INSTALL_MEMCACHED} \
             ${INSTALL_CC} ${INSTALL_CXX}
@@ -152,6 +147,7 @@ function steps_getdeps() {
           brew services stop memcached || true
           echo MEMCACHED_BINARY="/usr/local/bin/memcached" >> ${GITHUB_ENV}
       - name: Build memcached
+        if: runner.os != 'Windows'
         run: |
           if test -d memcached
           then
@@ -178,15 +174,22 @@ function steps_getdeps() {
 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: cmake --build build -j2
+        run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2
+<?php
+}
+
+function steps_test() {
+?>
       - name: Test
-        run: cmake --build build -j2 --target test
+        if: env.BUILD_TESTING == 'ON'
+        run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target test
       - name: Install
-        run: cmake --build build -j2 --target 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
 }
@@ -196,27 +199,27 @@ 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'
+        if: 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 --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 -j2 --target package -- VERBOSE=
-          cmake --build build -j2 --target push-artifacts -- VERBOSE=
+          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() {
 ?>
       - name: Notify Gitter (success)
-        if: ${{ success() }}
+        if: ${{ success() && runner.os != 'Windows'}}
         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() }}
+        if: ${{ failure() && runner.os != 'Windows'}}
         run: |
           REF=$(basename ${GITHUB_REF})
           curl -sS "${{ secrets.GITTER }}" \
@@ -229,6 +232,7 @@ function steps($splat_map = null) {
   steps_setenv($splat_map);
   steps_getdeps();
   steps_build();
+  steps_test();
   steps_package();
   steps_notify();
 }
@@ -240,12 +244,13 @@ function defaults($os_vnd = DEF["os"]) {
   return "$os_ver, $cc_vnd, $cc_ver";
 }
 
-function env_override($os_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:   <?=DEF[DEF[$os_vnd]]?> #
-      CC_VER:   <?=DEF[DEF[DEF[$os_vnd]]]["ver"]?> #
+      CC_VND:   <?=$cc_vnd?> #
+      CC_VER:   <?=DEF[$cc_vnd]["ver"]?> #
 <?php
 }
 
@@ -254,10 +259,12 @@ name: cmake-build-ci
 on:
   push:
     paths:
+      - "contrib/**"
       - "include/**"
       - "src/**"
       - "test/**"
       - "CMake*"
+      - "CPack*"
       - ".github/workflows/cmake-build-ci*"
     branches-ignore:
       - gh-pages
@@ -268,7 +275,7 @@ on:
 env:
   # defaults
   INSTALL_MEMCACHED:  memcached
-  ENABLE_SASL:        "ON"
+  ENABLE_SASL:        "OFF" # ^ almost no memcached distribution package has built in sasl support
   ENABLE_HASH_HSIEH:  "ON"
   ENABLE_DTRACE:      "OFF"
   OS_VND:   <?=DEF["os"]?> #
@@ -290,6 +297,7 @@ jobs:
       CXXFLAGS:           "-O0 --coverage"
       INSTALL_MEMCACHED:  ""
       MEMCACHED_PREFIX:   "/tmp"
+      ENABLE_SASL:        "ON"
     steps:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
@@ -332,7 +340,6 @@ jobs:
     runs-on: <?=DEF["macOS"]?> #
     env:
       CMAKE_BUILD_TYPE:   "Debug"
-      ENABLE_SASL:        "OFF"
       BUILD_TESTING:      "ON"
       VERBOSE:            "ON"
       CFLAGS:             "-O0 --coverage"
@@ -349,29 +356,30 @@ jobs:
     name: rel-mac (<?=DEF["macOS"]?>, <?=DEF[DEF["macOS"]]?>, <?=DEF[DEF[DEF["macOS"]]]["ver"]?>)
     runs-on: <?=DEF["macOS"]?> #
     env:
-      ENABLE_SASL:        "OFF"
+      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(false); ?>
 
-  # win build
+  # win msvc build
   win-msvc:
     name: win-msvc (<?=DEF["Windows"]?>, <?=DEF[DEF["Windows"]]?>, <?=DEF[DEF[DEF["Windows"]]]["ver"]?>)
     runs-on: <?=DEF["Windows"]?> #
     env:
-      ENABLE_SASL:      "OFF"
+      CMAKE_BUILD_TYPE: "Release"
       BISON_ROOT:       "C:/msys64/usr"
       FLEX_ROOT:        "C:/msys64/usr"
-<?php env_override("Windows")?>
+<?php env_override("Windows", "msvc")?>
     continue-on-error: true
-    defaults:
-      run:
-        shell: msys2 {0}
     steps:
       - uses: actions/checkout@v2
+        with:
+          fetch-depth: 0
       - uses: msys2/setup-msys2@v2
         with:
           release: false
@@ -379,20 +387,32 @@ jobs:
           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
+<?php steps(false);?>
 
-  # release builds
+  # win mingw build (set PATH=%PATH%;c:\msys64\mingw64\bin)
+  win-mingw:
+    name: win-mingw (<?=DEF["Windows"]?>, mingw, <?=DEF["mingw"]["ver"]?>)
+    runs-on: <?=DEF["Windows"]?> #
+    env:
+      CMAKE_BUILD_TYPE: "Release"
+      CMAKE_GENERATOR:  "MinGW Makefiles"
+      BISON_ROOT:       "C:/msys64/usr"
+      FLEX_ROOT:        "C:/msys64/usr"
+<?php env_override("Windows", "mingw")?>
+    continue-on-error: true
+    steps:
+      - uses: actions/checkout@v2
+      - uses: msys2/setup-msys2@v2
+        with:
+          release: false
+          install: >-
+            rsync
+            openssh
+            mingw-w64-x86_64-toolchain
+            git
+<?php steps(false);?>
+
+  # linux release builds
   release:
     strategy:
       fail-fast: false
@@ -403,6 +423,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 }}
@@ -410,4 +431,6 @@ jobs:
       CC_VER: ${{ matrix.cc_ver }}
     steps:
       - uses: actions/checkout@v2
+        with:
+          fetch-depth: 0
 <?php steps(true); ?>