]> www.infradead.org Git - users/dwmw2/openconnect.git/commitdiff
Drop web page handling
authorDavid Woodhouse <dwmw2@infradead.org>
Fri, 26 Mar 2021 14:03:10 +0000 (14:03 +0000)
committerDavid Woodhouse <dwmw2@infradead.org>
Fri, 26 Mar 2021 14:03:12 +0000 (14:03 +0000)
The web site is handled by a cron job; if we wanted to flip that
over to pull from gitlab instead of git.infradead.org it would
be simple enough to it. Let's keep it in the same place for now.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
.gitlab-ci.yml
www/Makefile.am

index c1ec190b776d19d4d18793721b4ca6f73fb45ed9..f2f6af3810596a3ea0ce0dc3065dd325f59704b3 100644 (file)
@@ -478,20 +478,3 @@ static-analyzer/OpenSSL/Fedora:
     when: on_failure
     paths:
       - scan-build-src/*
-
-# generate static website
-pages:
-  image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
-  stage: deploy
-  script:
-    - ./autogen.sh
-    - ./configure
-    - make -C www update
-  dependencies: []
-  artifacts:
-    paths:
-      - public
-  only:
-    - master
-  only:
-    - master@openconnect/openconnect
index 132f06ad1ee90807474d63843abd77347acc6d62..85dd86093e5ac52bb437e98591bc2c6617bd4345 100644 (file)
@@ -13,10 +13,6 @@ ALL_PAGES = $(FTR_PAGES) $(START_PAGES) $(INDEX_PAGES) $(TOPLEVEL_PAGES) $(PROTO
 
 html_DATA = $(ALL_PAGES)
 
-update: $(ALL_PAGES)
-       mkdir -p $(top_builddir)/public
-       rsync -av ./ --exclude inc/ --exclude html.py --exclude 'Makefi*' --exclude '*~' --exclude '.git*' --exclude '*.inc' --exclude '*.xml' $(top_builddir)/public/
-
 .xml.html:
        $(PYTHON) $(CONV) -d $(srcdir) $< > $@ || (rm $@; exit 1)