gplugin/builders

bdf44477c025
Parents db60d4884dd1
Children 54a3e3418499
Remove the docs image as it's done differently now
--- a/Dockerfile.docs Sat Feb 15 20:45:21 2020 -0600
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-FROM gplugin/builders:debian-bullseye-amd64
-
-MAINTAINER Gary Kramlich <grim@reaperworld.com>
-
-COPY docs/build.sh /
-
--- a/convey.yml Sat Feb 15 20:45:21 2020 -0600
+++ b/convey.yml Mon Feb 24 18:57:15 2020 -0600
@@ -89,11 +89,6 @@
stages:
- tasks: [import, build]
- docs:
- environment: [TARGET=docs]
- stages:
- - tasks: [import, build]
-
elementary-juno-amd64:
environment: [TARGET=elementary-juno-amd64]
stages:
@@ -173,7 +168,6 @@
- debian-buster-armhf
- debian-bullseye-amd64
- dist
- - docs
- elementary-juno-amd64
- fedora-29-amd64
- fedora-30-amd64
--- a/docs/build.sh Sat Feb 15 20:45:21 2020 -0600
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-#!/bin/sh -ex
-# Copyright (C) 2015-2019 Gary Kramlich <grim@reaperworld.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-cd ${CONVEY_WORKSPACE}
-
-BUILD_DIR="build-docs"
-
-meson ${BUILD_DIR}
-ninja -C ${BUILD_DIR} gplugin-doc gplugin-gtk-doc
-EC=${?}
-
-mkdir -p ${CONVEY_WORKSPACE}/docs
-cp -a ${BUILD_DIR}/gplugin/reference/html ${CONVEY_WORKSPACE}/docs/gplugin
-cp -a ${BUILD_DIR}/gplugin-gtk/reference/html ${CONVEY_WORKSPACE}/docs/gplugin-gtk
-
-exit ${?}
-