fcgi
Some checks failed
CMake on a single platform / build (push) Failing after 17s

This commit is contained in:
2025-02-24 20:50:52 +04:00
committed by Andrey Alekseev
parent ab49a42b95
commit 4a5fb9c6c6
2 changed files with 20 additions and 20 deletions

View File

@@ -23,19 +23,19 @@ jobs:
run: ~/stop.sh fourier || echo service was not started
- name: clear old installation
run: xargs rm < ~/build/install_manifest.txt || echo previous installation not found
run: xargs rm < ~/build/fourier/install_manifest.txt || echo previous installation not found
- name: clear old builddir
run: rm -rf ~/build || echo previous installation not found
run: rm -rf ~/build/fourier || echo previous installation not found
- name: Configure CMake
run: cmake -B ~/build -DCMAKE_INSTALL_PREFIX=~/.local
run: cmake -B ~/build/fourier -DCMAKE_INSTALL_PREFIX=~/.local
- name: Build
run: cmake --build ~/build
run: cmake --build ~/build/fourier
- name: install
run: make -C ~/build install
run: make -C ~/build/fourier install
- name: Start server
run: ~/start.sh fourier