From bd0a59cc5fd8806cdcb2a30e797a0110a592dd4d Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Sat, 10 May 2025 16:50:00 +0000 Subject: [PATCH] ci: fix shell syntax for Ubuntu runner Fix the Install Dependencies section of the CI Ubuntu runner to use `|` instead of `>-` for the command list block, which is necessary for running multiple shell commands. Signed-off-by: Rafael Kitover --- .github/workflows/ubuntu-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu-build.yml b/.github/workflows/ubuntu-build.yml index 54f86d35..a4f48a14 100644 --- a/.github/workflows/ubuntu-build.yml +++ b/.github/workflows/ubuntu-build.yml @@ -43,11 +43,13 @@ jobs: submodules: recursive - name: Install Dependencies - run: >- + run: | sudo add-apt-repository ppa:hrzhu/sdl3-backport sudo apt update bash installdeps - if [ "${{ matrix.build_compiler }}" = clang ]; then sudo apt -y install clang; fi + if [ "${{ matrix.build_compiler }}" = clang ]; then + sudo apt -y install clang + fi - name: Install xvfb run: sudo apt -y install xvfb