From: David Woodhouse Date: Fri, 26 Mar 2021 14:03:10 +0000 (+0000) Subject: Drop web page handling X-Git-Tag: v8.20~349^2~4 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=eae6da8fd4348a568d1bb64a72147677f3543bf6;p=users%2Fdwmw2%2Fopenconnect.git Drop web page handling 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 --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1ec190b..f2f6af38 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/www/Makefile.am b/www/Makefile.am index 132f06ad..85dd8609 100644 --- a/www/Makefile.am +++ b/www/Makefile.am @@ -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)