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 <rkitover@gmail.com>
This commit is contained in:
parent
d2762a95bf
commit
bd0a59cc5f
|
@ -43,11 +43,13 @@ jobs:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: >-
|
run: |
|
||||||
sudo add-apt-repository ppa:hrzhu/sdl3-backport
|
sudo add-apt-repository ppa:hrzhu/sdl3-backport
|
||||||
sudo apt update
|
sudo apt update
|
||||||
bash installdeps
|
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
|
- name: Install xvfb
|
||||||
run: sudo apt -y install xvfb
|
run: sudo apt -y install xvfb
|
||||||
|
|
Loading…
Reference in New Issue