From 118d8f3e6f8a9eb18e7e28ac7374210881fd2d36 Mon Sep 17 00:00:00 2001 From: Rai <56082069+raicool@users.noreply.github.com> Date: Wed, 16 Aug 2023 16:21:27 -0400 Subject: [PATCH 1/3] add sdl to workflow --- .github/workflows/cmake-single-platform.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 28c6f78..1a3d67f 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -20,7 +20,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v1 + - name: install_dependencies + run: | + sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse" + sudo apt-get update -y -qq + sudo apt-get install libsdl2-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. From d680f8405b4a6b457bba540d4e3e7a96be5b9ac0 Mon Sep 17 00:00:00 2001 From: Rai <56082069+raicool@users.noreply.github.com> Date: Wed, 16 Aug 2023 16:23:16 -0400 Subject: [PATCH 2/3] add sdl_image to workflow --- .github/workflows/cmake-single-platform.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 1a3d67f..4f2d845 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -26,6 +26,7 @@ jobs: sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse" sudo apt-get update -y -qq sudo apt-get install libsdl2-dev + sudo apt-get install libsdl-image1.2-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. From f3c7a4e8aa13e3e82ae7dfd5e924eb25c56e60a4 Mon Sep 17 00:00:00 2001 From: Rai <56082069+raicool@users.noreply.github.com> Date: Wed, 16 Aug 2023 16:25:25 -0400 Subject: [PATCH 3/3] oops --- .github/workflows/cmake-single-platform.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 4f2d845..7e7f86f 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -23,10 +23,8 @@ jobs: - uses: actions/checkout@v1 - name: install_dependencies run: | - sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse" - sudo apt-get update -y -qq sudo apt-get install libsdl2-dev - sudo apt-get install libsdl-image1.2-dev + sudo apt-get install libsdl2-image-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.