X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=.github%2Fworkflows%2Fcmake-build-ci.gen;h=1ac55f9ef8bc874576d7fbcb2f498164484e51f0;hb=2250d12f3eb4d76a865f67ce36a861933a4942b4;hp=2d07e8dc2b546d65a3db20bf21c8ba6285be8862;hpb=ffdea3f2ffcff33a70b488c6034913eefb098388;p=m6w6%2Flibmemcached diff --git a/.github/workflows/cmake-build-ci.gen b/.github/workflows/cmake-build-ci.gen index 2d07e8dc..1ac55f9e 100755 --- a/.github/workflows/cmake-build-ci.gen +++ b/.github/workflows/cmake-build-ci.gen @@ -26,6 +26,11 @@ const DEF = [ "CC" => "msvc", "CXX" => "msvc", ], + "mingw" => [ // dummy + "ver" => "cur", + "CC" => "mingw", + "CXX" => "mingw", + ] ]; const ENV = [ "ubuntu-20.04" => [ @@ -82,23 +87,25 @@ const MAP = [ ] ] ], - "windows-2019" => [ - 'env.CC_VND' => [ - "msvc" => [ - 'env.CC_VER' => [ - "cur" => "2019", - ], - ], - ], - ], ] ]; /** * @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; @@ -131,27 +138,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 -my \ libevent-dev \ libsasl2-dev \ libtbb-dev \ - 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} + + 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 @@ -173,20 +200,28 @@ 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: cmake --build build -j2 + run: cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 + - 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 - - 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}})" + - name: Notify Gitter + run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }} OS_VND: # OS_VER: # - CC_VND: # - CC_VER: # + CC_VND: # + CC_VER: # # @@ -290,6 +317,7 @@ jobs: CXXFLAGS: "-O0 --coverage" INSTALL_MEMCACHED: "" MEMCACHED_PREFIX: "/tmp" + ENABLE_SASL: "ON" steps: - uses: actions/checkout@v2 - uses: actions/checkout@v2 @@ -297,34 +325,23 @@ jobs: repository: memcached/memcached path: memcached ref: 1.6.7 - + - uses: codecov/codecov-action@v1.0.13 # sanitizer build - dbg-san: - name: dbg-san () - runs-on: # - env: - CMAKE_BUILD_TYPE: "Debug" - BUILD_TESTING: "ON" - VERBOSE: "ON" - ENABLE_SANITIZERS: "address;undefined" - steps: - - uses: actions/checkout@v2 - - - # thread sanitizer build - dbg-tsan: - name: dbg-tsan () + sanitizer: runs-on: # + 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 - + # mac debug dbg-mac: @@ -332,16 +349,15 @@ jobs: runs-on: # env: CMAKE_BUILD_TYPE: "Debug" - ENABLE_SASL: "OFF" 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 release @@ -350,51 +366,38 @@ jobs: runs-on: # env: CMAKE_BUILD_TYPE: "Release" - ENABLE_SASL: "OFF" BUILD_DOCS_MANGZ: "ON" continue-on-error: true steps: - uses: actions/checkout@v2 - + with: + fetch-depth: 0 + - # win build - win-msvc: - name: win-msvc (, , ) - runs-on: # + # 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" - ENABLE_SASL: "OFF" - BISON_ROOT: "C:/msys64/usr" - FLEX_ROOT: "C:/msys64/usr" - - continue-on-error: true - defaults: - run: - shell: msys2 {0} + OS_VND: Windows + OS_VER: ${{ matrix.os_ver }} + CC_VND: ${{ matrix.cc_vnd }} + CC_VER: ${{ matrix.cc_ver }} 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 + fetch-depth: 0 + - # release builds + # linux release builds release: strategy: fail-fast: false @@ -413,4 +416,6 @@ jobs: CC_VER: ${{ matrix.cc_ver }} steps: - uses: actions/checkout@v2 - + with: + fetch-depth: 0 +