From 241570ac82d4a25d226912cba66aaa191cbf59f4 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Wed, 21 Feb 2024 09:09:17 +0300 Subject: [PATCH] removed extra workflow --- .github/workflows/appimage-wayland.yml | 42 -------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/appimage-wayland.yml diff --git a/.github/workflows/appimage-wayland.yml b/.github/workflows/appimage-wayland.yml deleted file mode 100644 index f59902f7..00000000 --- a/.github/workflows/appimage-wayland.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: C/C++ AppImage (wayland) - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - build-appimage: - - strategy: - matrix: - include: - - os: ubuntu-latest - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v2 - with: - submodules: 'true' - - name: install dependencies - run: | - sudo apt-get update - sudo apt-get install -y build-essential libglfw3-wayland libglfw3-dev libglew-dev libglm-dev libpng-dev libopenal-dev libluajit-5.1-dev cmake squashfs-tools - sudo ln -s /usr/lib/x86_64-linux-gnu/libluajit-5.1.a /usr/lib/x86_64-linux-gnu/liblua5.1.a - sudo ln -s /usr/include/luajit-2.1 /usr/include/lua - - name: configure - run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_APPDIR=1 - - name: build - run: cmake --build build -t install - - name: Build AppImage - uses: AppImageCrafters/build-appimage-action@fe2205a4d6056be47051f7b1b3811106e9814910 - env: - UPDATE_INFO: gh-releases-zsync|MihailRis|VoxelEngine-Cpp|latest|*x86_64.AppImage.zsync - with: - recipe: dev/AppImageBuilder.yml - - uses: actions/upload-artifact@v2 - with: - name: AppImage - path: './*.AppImage*'