Suppress some log output in act

This commit is contained in:
Jesse Talavera-Greenberg 2023-09-12 17:52:18 -04:00
parent 9597b9c35b
commit 0ab448b035

View File

@ -49,7 +49,7 @@ runs:
- name: Install Dependencies (Linux x86_64/Android + act)
if: ${{ env.ACT && runner.os == 'Linux' && !contains(inputs.target, 'aarch64') }}
shell: bash
run: sudo apt-get update -y && sudo apt-get install -y libepoxy-dev ccache ninja-build cmake p7zip-full xvfb libx11-xcb-dev xdg-utils x11-xserver-utils
run: sudo apt-get update -qy && sudo apt-get install -qy libepoxy-dev ccache ninja-build cmake p7zip-full xvfb libx11-xcb-dev xdg-utils x11-xserver-utils
- name: Install Cross-Compile Support (Linux aarch64)
if: ${{ runner.os == 'Linux' && contains(inputs.target, 'aarch64') }}