From d81718a0b3d979430e2a10fbeccf71d368bc2b18 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 7 Dec 2024 01:32:33 +0300 Subject: [PATCH] update appimage workflow --- .github/workflows/appimage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index b264c95c..4986c63b 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'true' - - name: install dependencies + - name: Install dependencies run: | sudo apt-get update sudo apt-get install -y build-essential libglfw3-dev libglfw3 libglew-dev \ @@ -34,9 +34,9 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Release .. sudo make install cd ../.. - - name: configure - run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_APPDIR=1 - - name: build + - name: Configure + run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_APPDIR=1 -DVOXELENGINE_BUILD_TESTS=ON + - name: Build run: cmake --build build -t install - name: Run tests run: ctest --test-dir ${{github.workspace}}/build