diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 815a07ec..d2ee57c2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,44 +66,3 @@ jobs: test/*.log test/*.trs test/*.tag - - build-cmake: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Prerequisites - run: | - sudo apt-get update - sudo apt-get install -yq cppcheck asciidoc-base w3m libchromaprint-dev doxygen graphviz - sudo apt-get install -yq libcue-dev libfuse-dev libsqlite3-dev libavcodec-dev libavformat-dev libswresample-dev libavutil-dev libswscale-dev libavfilter-dev libchardet-dev - sudo apt-get install -yq libdvdread-dev libdvdnav-dev libbluray-dev - - name: cmake config - run: cmake config . - - name: cmake build - run: cmake --build . - - name: cmake check - run: cmake --build . --target check - - name: cmake doxy - run: cmake --build . --target doxy - - name: cmake cppcheck - run: cmake --build . --target cppcheck - - name: Archive Build Logs - if: always() - uses: actions/upload-artifact@v3 - with: - name: Collected build logs - path: | - *.log - config.status - - name: Archive Test Results - if: always() - uses: actions/upload-artifact@v3 - with: - name: Collected test results - path: | - test/*.log - test/*.trs - test/*.tag -