/**
* @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;
}
}
-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 -my \
libevent-dev \
${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 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: |
echo MEMCACHED_BINARY="${MEMCACHED_PREFIX}/bin/memcached" >> ${GITHUB_ENV}
fi
<?php
+ endif;
}
function steps_build() {
<?php
}
-function steps_notify() {
+function steps_notify($os_vnd) {
+ if ($os_vnd !== "Windows") :
?>
- name: Notify Gitter (success)
if: ${{ success() && runner.os != 'Windows'}}
--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
+ endif;
}
-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_test();
steps_package();
- steps_notify();
+ steps_notify($os_vnd);
}
function defaults($os_vnd = DEF["os"]) {
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()?>)
- runs-on: <?=DEF[DEF["os"]]?> #
- env:
- CMAKE_BUILD_TYPE: "Debug"
- BUILD_TESTING: "ON"
- VERBOSE: "ON"
- ENABLE_SANITIZERS: "address;undefined"
- steps:
- - uses: actions/checkout@v2
-<?php steps(); ?>
-
- # thread sanitizer build
- dbg-tsan:
- name: dbg-tsan (<?=defaults()?>)
+ sanitizer:
runs-on: <?=DEF[DEF["os"]]?> #
+ strategy:
+ matrix:
+ sanitizer: ['address;undefined', 'thread']
env:
CMAKE_BUILD_TYPE: "Debug"
BUILD_TESTING: "ON"
VERBOSE: "ON"
- ENABLE_SANITIZERS: "thread"
+ ENABLE_SANITIZERS: ${{ matrix.sanitizer }}
steps:
- uses: actions/checkout@v2
-<?php steps(); ?>
+<?php steps("Linux"); ?>
# mac debug
dbg-mac:
VERBOSE: "ON"
CFLAGS: "-O0 --coverage"
CXXFLAGS: "-O0 --coverage"
-<?php env_override("macOS")?> #
+<?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
# mac release
fetch-depth: 0
<?php steps(false); ?>
- # win msvc build
- win-msvc:
- name: win-msvc (<?=DEF["Windows"]?>, <?=DEF[DEF["Windows"]]?>, <?=DEF[DEF[DEF["Windows"]]]["ver"]?>)
- runs-on: <?=DEF["Windows"]?> #
- env:
- CMAKE_BUILD_TYPE: "Release"
- BISON_ROOT: "C:/msys64/usr"
- FLEX_ROOT: "C:/msys64/usr"
-<?php env_override("Windows", "msvc")?>
+ # 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
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: msys2/setup-msys2@v2
- with:
- release: false
- path-type: inherit
- install: >-
- rsync
- openssh
-<?php steps(false);?>
-
- # 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
+ 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
- - uses: msys2/setup-msys2@v2
- with:
- release: false
- path-type: inherit
- install: >-
- rsync
- openssh
- mingw-w64-x86_64-toolchain
- git
- - name: Prepare environment (for mingw on 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 steps(false);?>
+<?php steps("Windows", true); ?>
# linux release builds
release:
- uses: actions/checkout@v2
with:
fetch-depth: 0
-<?php steps(true); ?>
+<?php steps("Linux", true); ?>
${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
if: runner.os != 'Windows'
run: |
- uses: codecov/codecov-action@v1.0.13
# sanitizer build
- dbg-san:
- name: dbg-san (ubuntu-20.04, gnu, cur)
- runs-on: ubuntu-20.04 #
- env:
- CMAKE_BUILD_TYPE: "Debug"
- BUILD_TESTING: "ON"
- VERBOSE: "ON"
- ENABLE_SANITIZERS: "address;undefined"
- steps:
- - uses: actions/checkout@v2
- - name: Prepare environment (for cur gnu on ubuntu-20.04)
- if: (env.OS_VER=='ubuntu-20.04') && (env.CC_VND=='gnu') && (env.CC_VER=='cur')
- run: |
- echo CC="gcc-9" >> ${GITHUB_ENV}
- echo CXX="g++-9" >> ${GITHUB_ENV}
- - name: Install dependencies (Linux)
- if: runner.os == 'Linux'
- run: |
- 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'
- 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
- if: runner.os != 'Windows'
- 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
- - name: Generate build tree (${{ env.CMAKE_BUILD_TYPE }})
- run: cmake --config ${{ env.CMAKE_BUILD_TYPE }} -S . -B build
- - name: Build all with ${{ env.CXX }} ${{ env.CXXFLAGS }}
- run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2
- - name: Test
- if: env.BUILD_TESTING == 'ON'
- run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target test
- - name: Install
- if: env.BUILD_TESTING == 'ON'
- run: cmake --install build --config ${{ env.CMAKE_BUILD_TYPE }} --prefix /tmp
- - name: Failed tests log
- if: ${{ env.BUILD_TESTING == 'ON' && failure() }}
- run: cat build/Testing/Temporary/LastTest.log || true
- - 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
- - name: Notify Gitter (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() && runner.os != 'Windows'}}
- 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}})"
-
- # thread sanitizer build
- dbg-tsan:
- name: dbg-tsan (ubuntu-20.04, gnu, cur)
+ sanitizer:
runs-on: ubuntu-20.04 #
+ strategy:
+ matrix:
+ sanitizer: ['address;undefined', 'thread']
env:
CMAKE_BUILD_TYPE: "Debug"
BUILD_TESTING: "ON"
VERBOSE: "ON"
- ENABLE_SANITIZERS: "thread"
+ ENABLE_SANITIZERS: ${{ matrix.sanitizer }}
steps:
- uses: actions/checkout@v2
- name: Prepare environment (for cur gnu on ubuntu-20.04)
${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
if: runner.os != 'Windows'
run: |
OS_VER: macos-10.15 #
CC_VND: clang #
CC_VER: cur #
- #
continue-on-error: true
steps:
- uses: actions/checkout@v2
- - name: Install dependencies (Linux)
- if: runner.os == 'Linux'
- run: |
- 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)
+ - name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install bison flex sphinx-doc ${INSTALL_MEMCACHED}
- uses: actions/checkout@v2
with:
fetch-depth: 0
- - name: Install dependencies (Linux)
- if: runner.os == 'Linux'
- run: |
- 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'
+ - name: Prepare environment (for cur gnu on ubuntu-20.04)
+ if: (env.OS_VER=='ubuntu-20.04') && (env.CC_VND=='gnu') && (env.CC_VER=='cur')
run: |
- brew install bison flex sphinx-doc ${INSTALL_MEMCACHED}
- brew services stop memcached || true
- echo MEMCACHED_BINARY="/usr/local/bin/memcached" >> ${GITHUB_ENV}
+ echo CC="gcc-9" >> ${GITHUB_ENV}
+ echo CXX="g++-9" >> ${GITHUB_ENV}
+ - name: Install dependencies ()
+ if: runner.os == ''
- name: Build memcached
if: runner.os != 'Windows'
run: |
--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}})"
- # win msvc build
- win-msvc:
- name: win-msvc (windows-2019, msvc, cur)
- runs-on: windows-2019 #
+ # windows release builds
+ windows:
+ strategy:
+ fail-fast: false
+ matrix:
+ os_ver: [windows-2019]
+ cc_vnd: [msvc, mingw]
+ cc_ver: [cur]
+ runs-on: ${{ matrix.os_ver }}
+ continue-on-error: true
env:
CMAKE_BUILD_TYPE: "Release"
- BISON_ROOT: "C:/msys64/usr"
- FLEX_ROOT: "C:/msys64/usr"
- OS_VND: Windows #
- OS_VER: windows-2019 #
- CC_VND: msvc #
- CC_VER: cur #
- continue-on-error: true
+ 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
- - uses: msys2/setup-msys2@v2
- with:
- release: false
- path-type: inherit
- install: >-
- rsync
- openssh
- - name: Install dependencies (Linux)
- if: runner.os == 'Linux'
- run: |
- 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'
- 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
- if: runner.os != 'Windows'
+ - name: Prepare environment (Windows)
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
- - name: Generate build tree (${{ env.CMAKE_BUILD_TYPE }})
- run: cmake --config ${{ env.CMAKE_BUILD_TYPE }} -S . -B build
- - name: Build all with ${{ env.CXX }} ${{ env.CXXFLAGS }}
- run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2
- - name: Test
- if: env.BUILD_TESTING == 'ON'
- run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target test
- - name: Install
- if: env.BUILD_TESTING == 'ON'
- run: cmake --install build --config ${{ env.CMAKE_BUILD_TYPE }} --prefix /tmp
- - name: Failed tests log
- if: ${{ env.BUILD_TESTING == 'ON' && failure() }}
- run: cat build/Testing/Temporary/LastTest.log || true
- - 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
- - name: Notify Gitter (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() && runner.os != 'Windows'}}
+ 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: |
- 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}})"
-
- # win mingw build (set PATH=%PATH%;c:\msys64\mingw64\bin)
- win-mingw:
- name: win-mingw (windows-2019, mingw, cur)
- runs-on: windows-2019 #
- env:
- CMAKE_BUILD_TYPE: "Release"
- CMAKE_GENERATOR: "MinGW Makefiles"
- BISON_ROOT: "C:/msys64/usr"
- FLEX_ROOT: "C:/msys64/usr"
- OS_VND: Windows #
- OS_VER: windows-2019 #
- CC_VND: mingw #
- CC_VER: cur #
- continue-on-error: true
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: msys2/setup-msys2@v2
+ echo "CMAKE_GENERATOR=\"MinGW Makefiles\"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
+ - name: Install dependencies (Windows)
+ if: runner.os == 'Windows'
+ uses: msys2/setup-msys2@v2
with:
release: false
path-type: inherit
install: >-
rsync
openssh
- mingw-w64-x86_64-toolchain
- git
- - name: Prepare environment (for mingw on 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: Install dependencies (Linux)
- if: runner.os == 'Linux'
- run: |
- 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'
- 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
- if: runner.os != 'Windows'
- 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
- name: Generate build tree (${{ env.CMAKE_BUILD_TYPE }})
run: cmake --config ${{ env.CMAKE_BUILD_TYPE }} -S . -B build
- name: Build all with ${{ env.CXX }} ${{ env.CXXFLAGS }}
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
- - name: Notify Gitter (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() && runner.os != 'Windows'}}
- 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}})"
# linux release builds
release:
${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
if: runner.os != 'Windows'
run: |