diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index d1db13822..8fff7e29d 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -190,7 +190,7 @@ jobs: brew install cmake gettext libdeflate libevent libnatpmp libpsl miniupnpc ninja node pkg-config - name: Get Dependencies (GTK) if: ${{ needs.what-to-make.outputs.make-gtk == 'true' }} - run: brew install gtkmm3 libjpeg + run: brew install gtkmm3 - name: Get Dependencies (Qt) if: ${{ needs.what-to-make.outputs.make-qt == 'true' }} run: brew install qt@5 @@ -462,10 +462,10 @@ jobs: - name: Get Dependencies run: | brew update - brew install cmake gettext libdeflate libevent libnatpmp libpsl miniupnpc ninja node pkg-config + brew install cmake gettext ninja node pkg-config - name: Get Dependencies (GTK) if: ${{ needs.what-to-make.outputs.make-gtk == 'true' }} - run: brew install gtkmm3 libjpeg + run: brew install gtkmm3 - name: Get Dependencies (Qt) if: ${{ needs.what-to-make.outputs.make-qt == 'true' }} run: brew install qt@5 @@ -494,7 +494,15 @@ jobs: -DENABLE_UTILS=${{ (needs.what-to-make.outputs.make-utils == 'true') && 'ON' || 'OFF' }} \ -DENABLE_WEB=${{ (needs.what-to-make.outputs.make-web == 'true') && 'ON' || 'OFF' }} \ -DENABLE_WERROR=ON \ - -DRUN_CLANG_TIDY=OFF + -DRUN_CLANG_TIDY=OFF \ + -DUSE_SYSTEM_EVENT2=OFF \ + -DUSE_SYSTEM_DEFLATE=OFF \ + -DUSE_SYSTEM_DHT=OFF \ + -DUSE_SYSTEM_MINIUPNPC=OFF \ + -DUSE_SYSTEM_NATPMP=OFF \ + -DUSE_SYSTEM_UTP=OFF \ + -DUSE_SYSTEM_B64=OFF \ + -DUSE_SYSTEM_PSL=OFF - name: Make run: cmake --build obj --config RelWithDebInfo - name: Test