From 1e4648aa213fc7c14b0ebb817c7d00b46a313ad9 Mon Sep 17 00:00:00 2001 From: 21_SavchenkoAA <21_SavchenkoAA@iux.local> Date: Sat, 16 May 2026 20:07:31 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.gitea/workflows/ci.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b101fec..4e34734 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -27,11 +27,15 @@ jobs: - uses: actions/checkout@v4 - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y cmake build-essential - - name: Build and test + - name: Configure + run: cmake -B build + - name: Build + run: cmake --build build + - name: Run tests run: | - cmake -B build - cmake --build build - cd build && ctest --output-on-failure + cd build + ctest --output-on-failure --verbose + ./test_calculator build: name: Build @@ -44,9 +48,4 @@ jobs: - name: Build run: | cmake -B build -DCMAKE_BUILD_TYPE=Release - cmake --build build - - name: Upload artifact - uses: actions/upload-artifact@v4 - with: - name: calculator - path: build/ \ No newline at end of file + cmake --build build \ No newline at end of file