Skip to content

releasing new version 0.6.1 #19

releasing new version 0.6.1

releasing new version 0.6.1 #19

Workflow file for this run

name: Alma 9 gcc-11.5
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Run Alma container
run: |
docker run --rm -v $(pwd):/workspace -w /workspace almalinux:latest /bin/bash -c "
dnf update -y &&
dnf install -y gcc gcc-c++ glibc-devel make cmake git libcurl-devel libevent-devel ruby unzip libasan libubsan &&
cd ext/restinio &&
gem install rake &&
gem install Mxx_ru &&
mxxruexternals &&
cd ../.. &&
cmake -S . -B build -DCMAKE_BUILD_TYPE=debug -DNOPCH=ON -DBINFUSE_TEST=OFF -DHIBP_TEST=ON &&
cmake --build build
"