diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b3e73c35..26e510f72 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -189,10 +189,6 @@ jobs: - name: 'Build OBS' run: CI/macos/02_build_obs.sh --codesign --architecture "${{ matrix.arch }}" - - name: 'Run tests' - if: ${{ success() && matrix.arch == 'x86_64' }} - run: cmake --build build -t test - - name: 'Create build artifact' if: ${{ success() && fromJSON(needs.config.outputs.create_artifacts) }} run: | diff --git a/CI/include/Brewfile b/CI/include/Brewfile index 56b1bfcb7..a3dc3391e 100644 --- a/CI/include/Brewfile +++ b/CI/include/Brewfile @@ -2,6 +2,5 @@ brew "cmake" brew "ccache" brew "ninja" brew "freetype" -brew "cmocka" brew "swig" brew "coreutils" diff --git a/CI/macos/02_build_obs.sh b/CI/macos/02_build_obs.sh index 23c347ec3..a2e7e8e98 100755 --- a/CI/macos/02_build_obs.sh +++ b/CI/macos/02_build_obs.sh @@ -65,10 +65,6 @@ _configure_obs() { GENERATOR="Ninja" fi - if [ "${CI}" -a "${ARCH}" = "x86_64" ]; then - UNITTEST_OPTIONS="-DENABLE_UNIT_TESTS=ON" - fi - if [ "${SPARKLE_APPCAST_URL}" -a "${SPARKLE_PUBLIC_KEY}" ]; then SPARKLE_OPTIONS="-DSPARKLE_APPCAST_URL=\"${SPARKLE_APPCAST_URL}\" -DSPARKLE_PUBLIC_KEY=\"${SPARKLE_PUBLIC_KEY}\"" fi @@ -89,7 +85,6 @@ _configure_obs() { ${YOUTUBE_OPTIONS} \ ${TWITCH_OPTIONS} \ ${RESTREAM_OPTIONS} \ - ${UNITTEST_OPTIONS} \ ${SPARKLE_OPTIONS} \ ${CI:+-DBUILD_FOR_DISTRIBUTION=${BUILD_FOR_DISTRIBUTION} -DOBS_BUILD_NUMBER=${GITHUB_RUN_ID}} \ ${QUIET:+-Wno-deprecated -Wno-dev --log-level=ERROR}