Skip to content

New features

New features #149

# 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: CMake on a single platform
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:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.TOKEN }}
submodules: 'recursive'
- name: Install GCC (latest)
run: |
sudo apt-get update
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install -y gcc-13 g++-13
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13
gcc --version
g++ --version
# Install dependencies
- name: Install some developer dependencies
run: |
echo "Starting package installation..."
sudo apt update
echo "Installing build-essential..."
sudo apt-get install -y build-essential
echo "build-essential installed successfully."
echo "Installing libssl-dev..."
sudo apt-get install -y libssl-dev
echo "libssl-dev installed successfully."
echo "Installing python3-dev..."
sudo apt-get install -y python3-dev
echo "python3-dev installed successfully."
echo "Installing git..."
sudo apt-get install -y git
echo "git installed successfully."
echo "Installing cmake..."
sudo apt-get install -y cmake
echo "cmake installed successfully."
echo "Installing libcurl4-openssl-dev..."
sudo apt-get install -y libcurl4-openssl-dev
echo "libcurl4-openssl-dev installed successfully."
echo "Installing libuv1..."
sudo apt-get install -y libuv1
echo "libuv1 installed successfully."
echo "Installing libuv1-dev..."
sudo apt-get install -y libuv1-dev
echo "libuv1-dev installed successfully."
echo "Installing librdkafka-dev..."
sudo apt-get install -y librdkafka-dev
echo "librdkafka-dev installed successfully."
echo "Installing protobuf-compiler..."
sudo apt-get install -y protobuf-compiler
echo "protobuf-compiler installed successfully."
echo "Installing libprotobuf-dev..."
sudo apt-get install -y libprotobuf-dev
echo "libprotobuf-dev installed successfully."
echo "Installing ninja..."
sudo apt-get install -y ninja-build
echo "ninja installed successfully."
echo "All packages installed successfully!"
# Cache Boost
- name: Cache Boost
id: cache_boost
uses: actions/cache@v4
with:
path: |
boost_libs/
key: boost-${{ runner.os }}-${{ hashFiles('boost_1_83_0.tar.gz') }}
restore-keys: |
boost-${{ runner.os }}-
boost-
# Check if the Boost cache was restored
- name: Check if Boost cache was restored
id: cache_check
run: echo "BOOST_CACHE_HIT=${{ steps.cache_boost.outputs.cache-hit }}" >> $GITHUB_ENV
# Download Boost if cache not restored
- name: Download Boost
if: env.BOOST_CACHE_HIT != 'true'
run: |
export BOOST_VERSION=$(wget -qO- https://www.boost.org/users/download/ | grep -oP 'boost_1_\d+\d+_\d+' | head -n 1)
echo "Downloading latest Boost version: $BOOST_VERSION"
# Составляем URL и скачиваем Boost
MAJOR=$(echo $BOOST_VERSION | grep -oP '\d+' | head -n 1)
MINOR=$(echo $BOOST_VERSION | grep -oP '\d+' | head -n 2 | tail -n 1)
PATCH=$(echo $BOOST_VERSION | grep -oP '\d+' | tail -n 1)
BOOST_URL="https://archives.boost.io/release/${MAJOR}.${MINOR}.${PATCH}/source/${BOOST_VERSION}.tar.gz"
wget $BOOST_URL -O ${BOOST_VERSION}.tar.gz
# Распаковка архива Boost
echo "Extracting Boost archive: ${BOOST_VERSION}.tar.gz"
tar -xzf ${BOOST_VERSION}.tar.gz
echo "BOOST_VERSION=$BOOST_VERSION" >> $GITHUB_ENV
# Build and Install Boost if cache not restored
- name: Build and install Boost
if: env.BOOST_CACHE_HIT != 'true'
run: |
cd $BOOST_VERSION
./bootstrap.sh
sudo ./b2 install --prefix=$GITHUB_WORKSPACE/boost_libs
# Set up Boost environment variables
- name: Set Boost environment
run: echo "BOOST_ROOT=$GITHUB_WORKSPACE/boost_libs" >> $GITHUB_ENV
# Update references
- name: Git Submodule Update
run: |
git submodule update --force --recursive --init --remote
- name: Configure CMake DBG
# 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_BUILD_TYPE=${{env.BUILD_TYPE}} --target aot
# run: cmake --preset cryptobot_dbg -S ${{github.workspace}} -B ${{github.workspace}}/build
run: cmake --preset cryptobot_dbg
- name: Configure CMake RELEASE
# 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_BUILD_TYPE=${{env.BUILD_TYPE}} --target aot
# run: cmake --preset cryptobot_dbg -S ${{github.workspace}} -B ${{github.workspace}}/build
run: cmake --preset cryptobot_release
- name: Build DBG
# Build your program with the given configuration
run: cmake --build --preset build_dbg -- -j$(nproc)
- name: Build RELEASE
# Build your program with the given configuration
run: cmake --build --preset build_release -- -j$(nproc)
- name: Test
# working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --preset tests