From f3c3495b3b28bb99fd956921d9847e26ff29a74b Mon Sep 17 00:00:00 2001 From: Anonymus Raccoon Date: Wed, 19 Feb 2020 00:11:25 +0100 Subject: [PATCH] Updating the script for QT --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5fea40..437a6bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build commit artifact +name: Build for linux on: push: @@ -11,9 +11,9 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Install the SFML. + - name: Install the SFML and QT. run: sudo apt-get update && - sudo apt-get install --yes libsfml-dev qt5 + sudo apt-get install --yes libsfml-dev qt5-default - name: Build Makefile with CMake run: mkdir -p build && cd build && cmake .. - name: Build with Makefile