X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=.github%2Fworkflows%2Fcmake-build-ci.gen;h=50e1e50552fb873f9fe1ba404891bf68786fd228;hb=6e8df95620d6c79a55d1f6996260303694026370;hp=230b2f56be2548b36cd067265683d3cc485a6896;hpb=cae2bbb45518afd460c9be5036077f51451dda99;p=awesomized%2Flibmemcached diff --git a/.github/workflows/cmake-build-ci.gen b/.github/workflows/cmake-build-ci.gen index 230b2f56..50e1e505 100755 --- a/.github/workflows/cmake-build-ci.gen +++ b/.github/workflows/cmake-build-ci.gen @@ -32,23 +32,6 @@ const DEF = [ "CXX" => "mingw", ] ]; -const ENV = [ - "ubuntu-20.04" => [ - "gnu" => [ - "new" => [ - "INSTALL_CC" => "gcc-10", - "INSTALL_CXX" => "g++-10", - ] - ] - ], - "ubuntu-18.04" => [ - "clang" => [ - "old" => [ - "CXXFLAGS" => "-stdlib=libc++" - ] - ] - ] -]; const MAP = [ 'env.OS_VER' => [ "ubuntu-20.04" => [ @@ -57,14 +40,13 @@ const MAP = [ 'env.CC_VER' => [ "new" => "-10", "cur" => "-9", - "old" => "-8" ] ], "clang" => [ 'env.CC_VER' => [ - "new" => "-10", - "cur" => "-9", - "old" => "-8" + "new" => "-12", + "cur" => "-11", + "old" => "-10" ] ] ] @@ -73,28 +55,69 @@ const MAP = [ 'env.CC_VND' => [ "gnu" => [ 'env.CC_VER' => [ - "new" => "-9", - "cur" => "-8", + "new" => "-10", + "cur" => "-9", "old" => "-7" ] ], "clang" => [ 'env.CC_VER' => [ - "new" => "-9", - "cur" => "-8", - "old" => "-6.0" + "cur" => "-9", ] ] ] ], ] ]; +const ENV = [ + "ubuntu-20.04" => [ + "clang" => [ + "new" => [ + "CXXFLAGS" => "-stdlib=libc++", + "INSTALL_CXX" => "libc++-12-dev libc++abi-12-dev" + ], + "cur" => [ + "CXXFLAGS" => "-stdlib=libc++", + "INSTALL_CXX" => "libc++-11-dev libc++abi-11-dev" + ], + "old" => [ + "CXXFLAGS" => "-stdlib=libc++", + "INSTALL_CXX" => "libc++-10-dev libc++abi-10-dev" + ], + ] + ], + "ubuntu-18.04" => [ + "clang" => [ + "new" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], + "cur" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], + "old" => [ + "CXXFLAGS" => "-stdlib=libc++" + ], + ] + ] +]; /** * @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 + echo 'CMAKE_GENERATOR=Visual Studio 16 2019' | Out-File -FilePath $env:GITHUB_ENV -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; @@ -127,11 +150,15 @@ 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 update -y sudo apt-get install -my \ libevent-dev \ libsasl2-dev \ @@ -140,12 +167,29 @@ function steps_getdeps() { ${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: | @@ -169,12 +213,13 @@ function steps_getdeps() { 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 + run: cmake -DCMAKE_BUILD_TYPE=${{ 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: 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}})" + - name: Notify Gitter + env: + GITTER: ${{ secrets.GITTER }} + if: (success() || failure()) && env.GITTER != '' + run: bash .github/notify-gitter.sh ${{ job.status }} name: cmake-build-ci on: + workflow_dispatch: + release: + types: [published] push: paths: + - ".github/workflows/cmake-build-ci*" + - "CMake*" + - "CPack*" - "contrib/**" - "include/**" - "src/**" - "test/**" - - "CMake*" - - "CPack*" - - ".github/workflows/cmake-build-ci*" branches-ignore: - gh-pages pull_request: @@ -305,34 +344,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: @@ -344,11 +372,11 @@ jobs: 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 @@ -364,52 +392,29 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - + - # win msvc build - win-msvc: - name: win-msvc (, , ) - runs-on: # - env: - CMAKE_BUILD_TYPE: "Release" - BISON_ROOT: "C:/msys64/usr" - FLEX_ROOT: "C:/msys64/usr" - + # 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 - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - uses: msys2/setup-msys2@v2 - with: - release: false - path-type: inherit - install: >- - rsync - openssh - - - # win mingw build (set PATH=%PATH%;c:\msys64\mingw64\bin) - win-mingw: - name: win-mingw (, mingw, ) - runs-on: # env: CMAKE_BUILD_TYPE: "Release" - CMAKE_GENERATOR: "MinGW Makefiles" - BISON_ROOT: "C:/msys64/usr" - FLEX_ROOT: "C:/msys64/usr" - - 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 - - uses: msys2/setup-msys2@v2 with: - release: false - install: >- - rsync - openssh - mingw-w64-x86_64-toolchain - + fetch-depth: 0 + # linux release builds release: @@ -432,4 +437,4 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - +