X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=.github%2Fworkflows%2Fcmake-build-ci.gen;h=e8484a50e160506c620b04f5ebb7b8b714fc070c;hb=9b0cb8f7aac22ccb4eff6dcabcae4db627217efa;hp=d7f7679edcd6e405a73bccaf56ab066683a988c7;hpb=01c5e0ed8d3d9c72ea192792d1c49a50e756d635;p=m6w6%2Flibmemcached diff --git a/.github/workflows/cmake-build-ci.gen b/.github/workflows/cmake-build-ci.gen index d7f7679e..e8484a50 100755 --- a/.github/workflows/cmake-build-ci.gen +++ b/.github/workflows/cmake-build-ci.gen @@ -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,26 +17,19 @@ const DEF = [ "CXX" => "g++", ], "clang" => [ - "ver" => "apple", + "ver" => "cur", "CC" => "clang", "CXX" => "clang++", ], -]; -const ENV = [ - "ubuntu-20.04" => [ - "gnu" => [ - "new" => [ - "INSTALL_CC" => "gcc-10", - "INSTALL_CXX" => "g++-10", - ] - ] + "msvc" => [ // dummy + "ver" => "cur", + "CC" => "msvc", + "CXX" => "msvc", ], - "ubuntu-18.04" => [ - "clang" => [ - "old" => [ - "CXXFLAGS" => "-stdlib=libc++" - ] - ] + "mingw" => [ // dummy + "ver" => "cur", + "CC" => "mingw", + "CXX" => "mingw", ] ]; const MAP = [ @@ -74,6 +69,42 @@ const MAP = [ ] ] ] + ], + ] +]; +const ENV = [ + "ubuntu-20.04" => [ + "gnu" => [ + "new" => [ + "INSTALL_CC" => "gcc-10", + "INSTALL_CXX" => "g++-10", + ] + ], + "clang" => [ + "new" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], + "cur" => [ + "CXXFLAGS" => "-stdlib=libc++", + "INSTALL_CXX" => "libc++-9-dev libc++abi-9-dev" + ], + "old" => [ + "CXXFLAGS" => "-stdlib=libc++", + "INSTALL_CXX" => "libc++-8-dev libc++abi-8-dev" + ], + ] + ], + "ubuntu-18.04" => [ + "clang" => [ + "new" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], + "cur" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], + "old" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], ] ] ]; @@ -81,8 +112,19 @@ 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 + $os_vers) { foreach ($os_vers as $os_ver => $cc_vnds_) { if (!$splat_map && DEF[DEF["os"]] != $os_ver) continue; @@ -115,25 +157,47 @@ function steps_setenv($splat_map = null) { } } -function steps_getdeps() { +function steps_getdeps($os_vnd) { +?> + - name: Install dependencies () + if: runner.os == '' + - - 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' + 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} + + uses: msys2/setup-msys2@v2 + with: + release: false + path-type: inherit + install: >- + rsync + openssh + - name: Build memcached + if: runner.os != 'Windows' run: | if test -d memcached then @@ -155,65 +219,92 @@ function steps_getdeps() { echo MEMCACHED_BINARY="${MEMCACHED_PREFIX}/bin/memcached" >> ${GITHUB_ENV} fi - 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 + - 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 - - 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() }} + - name: Package + env: + PUSH_ARTIFACTS_ID: ${{ secrets.PUSH_ARTIFACTS_ID }} + if: env.CMAKE_BUILD_TYPE == 'Release' && !(env.OS_VER == 'ubuntu-18.04' && env.CC_VND == 'gnu' && env.CC_VER == 'new ') 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 --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 + if: success() || failure() + run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }} + + OS_VND: # + OS_VER: # + CC_VND: # + CC_VER: # + name: cmake-build-ci on: push: paths: + - "contrib/**" - "include/**" - "src/**" - "test/**" - "CMake*" + - "CPack*" - ".github/workflows/cmake-build-ci*" branches-ignore: - gh-pages @@ -224,12 +315,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: # OS_VER: # CC_VND: # @@ -242,11 +330,14 @@ jobs: name: dbg-new () runs-on: # 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 @@ -254,47 +345,79 @@ jobs: repository: memcached/memcached path: memcached ref: 1.6.7 - + - uses: codecov/codecov-action@v1.0.13 # sanitizer build - dbg-san: - name: dbg-san () + sanitizer: runs-on: # + 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 - + - # thread sanitizer build - dbg-tsan: - name: dbg-tsan () - runs-on: # + # mac debug + dbg-mac: + name: dbg-mac (, , ) + runs-on: # env: - ENABLE_SANITIZERS: "thread" + CMAKE_BUILD_TYPE: "Debug" + BUILD_TESTING: "ON" + VERBOSE: "ON" + CFLAGS: "-O0 --coverage" + CXXFLAGS: "-O0 --coverage" + + continue-on-error: true steps: - uses: actions/checkout@v2 - + + - uses: codecov/codecov-action@v1.0.13 - # mac build - dbg-mac: - name: dbg-mac (, , ) + # mac release + rel-mac: + name: rel-mac (, , ) runs-on: # env: - CFLAGS: -O0 --coverage - CXXFLAGS: -O0 --coverage - OS_VND: macOS - OS_VER: # - CC_VND: # - CC_VER: # + CMAKE_BUILD_TYPE: "Release" + BUILD_DOCS_MANGZ: "ON" + continue-on-error: true steps: - uses: actions/checkout@v2 - - - uses: codecov/codecov-action@v1.0.13 + with: + fetch-depth: 0 + - # release builds + # windows release builds + windows: + strategy: + fail-fast: false + matrix: + os_ver: [] + 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 + + + # linux release builds release: strategy: fail-fast: false @@ -305,11 +428,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 - + with: + fetch-depth: 0 +