Skip to content

功能更新:新增一个listener的兼容模式开关,可以允许设备使用不带回车换行(\r\n)的请求来实现登录,以兼容某些采用第三方设备进行N… #14

功能更新:新增一个listener的兼容模式开关,可以允许设备使用不带回车换行(\r\n)的请求来实现登录,以兼容某些采用第三方设备进行N…

功能更新:新增一个listener的兼容模式开关,可以允许设备使用不带回车换行(\r\n)的请求来实现登录,以兼容某些采用第三方设备进行N… #14

Workflow file for this run

# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml
name: Ubuntu-Clang
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
fetch-tags: true # 获取所有的 Git 标签
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build-Bin
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Build-Env
# Build your program with the given configuration
run: cd ${{github.workspace}}/env/redis-7.2.1 && make MALLOC=libc
- name: Pack-Env
run: |
cp ${{github.workspace}}/env/redis-7.2.1/src/redis-server ${{github.workspace}}/bin/Koro_Caster_Service/env
cp ${{github.workspace}}/env/start-redis.sh ${{github.workspace}}/bin/Koro_Caster_Service/env
cp ${{github.workspace}}/env/stop-redis.sh ${{github.workspace}}/bin/Koro_Caster_Service/env
- name: Get tag version
id: tag_version
run: echo "::set-output name=tag_version::$(git describe --tags --dirty=-dev)"
- name: Upload Release
uses: actions/[email protected]
with:
# 上传后文件的名称
name: Koro_Caster_Service-${{ steps.tag_version.outputs.tag_version }}-ububtu-clang
# 上传文件的路径
path: ${{github.workspace}}/bin/Koro_Caster_Service/