diff --git a/.circleci/config.yml b/.circleci/config.yml index 099570330..530189e27 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -500,15 +500,6 @@ jobs: - build_rpm - build_debian_stretch: - docker: - - image: debian:stretch - steps: - - install_debian_dependencies - - checkout - - cmake - - build_deb - build_debian_buster: docker: - image: debian:buster @@ -602,10 +593,6 @@ workflows: only: /.*/ - - build_debian_stretch: - filters: - tags: - only: /.*/ - build_debian_buster: filters: tags: diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 507103c4a..390b4d2de 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -566,65 +566,6 @@ jobs: run: rpmbuild -ba ../dist/unix/strawberry.spec - build_debian_stretch: - name: Build Debian Stretch - runs-on: ubuntu-latest - container: - image: debian:stretch - steps: - - uses: actions/checkout@v1.2.0 - - name: Install Debian dependencies - run: > - apt-get update && apt-get install -y - build-essential - ssh - git - make - cmake - gcc - pkg-config - fakeroot - gettext - lsb-release - libglib2.0-dev - dpkg-dev - libdbus-1-dev - libboost-dev - libprotobuf-dev - protobuf-compiler - libsqlite3-dev - libgnutls28-dev - libasound2-dev - libpulse-dev - qtbase5-dev - qtbase5-dev-tools - qtbase5-private-dev - libqt5x11extras5-dev - qttools5-dev - libgstreamer1.0-dev - libgstreamer-plugins-base1.0-dev - gstreamer1.0-alsa - gstreamer1.0-pulseaudio - libchromaprint-dev - libfftw3-dev - libcdio-dev - libmtp-dev - libgpod-dev - libimobiledevice-dev - libplist-dev - libusbmuxd-dev - - name: Create Build Environment - shell: bash - run: cmake -E make_directory build - - name: Configure CMake - shell: bash - working-directory: build - run: cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE - - name: make deb - shell: bash - run: dpkg-buildpackage -b -d -uc -us -nc -j2 - - build_debian_buster: name: Build Debian Buster runs-on: ubuntu-latest