From owner-dev-commits-doc-all@freebsd.org Sat Jun 5 01:26:39 2021 Return-Path: Delivered-To: dev-commits-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DF3B3638AB5 for ; Sat, 5 Jun 2021 01:26:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Fxhmv5T9gz3jb9; Sat, 5 Jun 2021 01:26:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9831F27940; Sat, 5 Jun 2021 01:26:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1551QdF5004194; Sat, 5 Jun 2021 01:26:39 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1551QdhI004193; Sat, 5 Jun 2021 01:26:39 GMT (envelope-from git) Date: Sat, 5 Jun 2021 01:26:39 GMT Message-Id: <202106050126.1551QdhI004193@gitrepo.freebsd.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org From: "Danilo G. Baio" Subject: git: 3cb477eaad - main - website: Move google-site-verification to the static dir MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: dbaio X-Git-Repository: doc X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3cb477eaad92143493e65da8a33c01794d8577b4 Auto-Submitted: auto-generated X-BeenThere: dev-commits-doc-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the doc repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jun 2021 01:26:39 -0000 The branch main has been updated by dbaio: URL: https://cgit.FreeBSD.org/doc/commit/?id=3cb477eaad92143493e65da8a33c01794d8577b4 commit 3cb477eaad92143493e65da8a33c01794d8577b4 Author: Danilo G. Baio AuthorDate: 2021-06-05 01:20:15 +0000 Commit: Danilo G. Baio CommitDate: 2021-06-05 01:20:15 +0000 website: Move google-site-verification to the static dir There are many build failures with timeout on our ci, with the following message: Error: Error building site: "/workspace/doc/website/content/en/google96eb5b100ed66487.html:1:1": timed out initializing value. You may have a circular loop in a shortcode, or your site may have resources that take longer to build than the `timeout` limit in your Hugo config file. *** [build] Error code 255 This is an attempt to fix that without increasing timeout, this way Hugo won't handle these files anymore. Structure before: $ find website/public/ | grep google website/public/google96eb5b100ed66487 website/public/google96eb5b100ed66487/index.html website/public/google6bb24ed0b804d5e9 website/public/google6bb24ed0b804d5e9/index.html After: $ find website/public/ | grep google website/public/google6bb24ed0b804d5e9.html website/public/google96eb5b100ed66487.html PR: 256367 Reported by: wosch --- website/{content/en => static}/google6bb24ed0b804d5e9.html | 0 website/{content/en => static}/google96eb5b100ed66487.html | 0 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/website/content/en/google6bb24ed0b804d5e9.html b/website/static/google6bb24ed0b804d5e9.html similarity index 100% rename from website/content/en/google6bb24ed0b804d5e9.html rename to website/static/google6bb24ed0b804d5e9.html diff --git a/website/content/en/google96eb5b100ed66487.html b/website/static/google96eb5b100ed66487.html similarity index 100% rename from website/content/en/google96eb5b100ed66487.html rename to website/static/google96eb5b100ed66487.html