From 685f91def25ff5de9105780c0390e2de2cc538fd Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Thu, 24 Nov 2022 15:35:09 -0330 Subject: [PATCH] Make automated builds use latest SDL (2.26) where possible. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb9c427a1..935d0ac31 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,9 @@ jobs: uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Install SDL2 run: | - curl https://www.libsdl.org/release/SDL2-2.0.10.tar.gz | tar xzf - - mkdir SDL2-2.0.10/build - cd SDL2-2.0.10/build + curl https://www.libsdl.org/release/SDL2-2.26.0.tar.gz | tar xzf - + mkdir SDL2-2.26.0/build + cd SDL2-2.26.0/build ../configure && make -j3 && sudo make install - name: Build Stella run: | @@ -47,7 +47,7 @@ jobs: platform: [x64, Win32] env: Platform: ${{ matrix.platform }} - SDL2_version: 2.24.0 + SDL2_version: 2.26.0 steps: - name: Check out the repository uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8