releasing new version 0.6.1 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
" |