diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8de4cac159447b26b23fa67e5677e17f1ffc7d06..f226661ccc3fdb9e3020f9201f5a7dcafdd424f8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -103,24 +103,6 @@ build-debian-jessie-build-dev: except: - master -# Debian WP.org Plugin deploy builds -build-debian-wp-org-deploy-build-master: - stage: deploy - script: - - docker build --pull -t "$CI_REGISTRY_IMAGE/debian:wp-org-deploy" ./debian/wp-org-deploy - - docker push "$CI_REGISTRY_IMAGE/debian:wp-org-deploy" - only: - - master - when: manual - -build-debian-wp-org-deploy-build-dev: - stage: deploy - script: - - docker build --pull -t "$CI_REGISTRY_IMAGE/debian:wp-org-deploy-dev" ./debian/wp-org-deploy - - docker push "$CI_REGISTRY_IMAGE/debian:wp-org-deploy-dev" - except: - - master - # PHP 7.3 build-php-7.3-master: stage: deploy diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/debian/wp-org-deploy/Dockerfile b/debian/wp-org-deploy/Dockerfile deleted file mode 100644 index ece152050fd7021a7dbf7b0e757d241c22bda4ef..0000000000000000000000000000000000000000 --- a/debian/wp-org-deploy/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM debian:stretch-slim - -LABEL maintainer="ethitter" -LABEL version="1.0" - -RUN echo "deb http://security.debian.org/ stretch/updates main" >> /etc/apt/sources.list - -RUN apt-get update \ - && apt-get -y --no-install-recommends install \ - ca-certificates \ - curl \ - git \ - rsync \ - subversion \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/*