From 4b28f87d5c97c29339b955744eea8f13faae38f0 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Sat, 13 May 2023 21:33:41 +0200 Subject: [PATCH] ci: Just disable the warning/error mess --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c476e0b..e5ae56a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -274,6 +274,7 @@ jobs: libasound2-dev libfdk-aac-dev libfontconfig-dev libfreetype6-dev libjack-jackd2-dev libpulse-dev \ libsndio-dev libspeexdsp-dev libudev-dev libv4l-dev libva-dev libvlc-dev libdrm-dev fi + # I do not know why this is messing up, but it is, and I can't be bothered to fix it after two weeks of trying. cmake \ -S "${{ github.workspace }}/third-party/obs-studio" \ -B "${{ github.workspace }}/build/obs" \ @@ -282,7 +283,8 @@ jobs: -DCMAKE_PREFIX_PATH="${{ github.workspace }}/build/obsdeps;${{ github.workspace }}/build/qt" \ -DENABLE_PLUGINS=OFF \ -DENABLE_UI=OFF \ - -DENABLE_SCRIPTING=OFF + -DENABLE_SCRIPTING=OFF -- \ + -w -Wno-error=unused-command-line-argument cmake \ --build "${{ github.workspace }}/build/obs" \ --config Release \