mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
Build without the deploy feature by default
Build tags setup changed to: * !nodeploy => withdeploy * nodeploy => !withdeploy Also move the deploy feature out into its own release archives. See #12994 for the primary motivation for this change. But this also greatly reduces the number of dependencies in Hugo when you don't need this feature and cuts the binary size greatly. Fixes #12994
This commit is contained in:
parent
62567d3820
commit
89bd025ebf
16 changed files with 78 additions and 42 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
@ -112,17 +112,17 @@ jobs:
|
||||||
sass --version;
|
sass --version;
|
||||||
mage -v check;
|
mage -v check;
|
||||||
env:
|
env:
|
||||||
HUGO_BUILD_TAGS: extended
|
HUGO_BUILD_TAGS: extended,withdeploy
|
||||||
- if: matrix.os == 'windows-latest'
|
- if: matrix.os == 'windows-latest'
|
||||||
# See issue #11052. We limit the build to regular test (no -race flag) on Windows for now.
|
# See issue #11052. We limit the build to regular test (no -race flag) on Windows for now.
|
||||||
name: Test
|
name: Test
|
||||||
run: |
|
run: |
|
||||||
mage -v test;
|
mage -v test;
|
||||||
env:
|
env:
|
||||||
HUGO_BUILD_TAGS: extended
|
HUGO_BUILD_TAGS: extended,withdeploy
|
||||||
- name: Build tags
|
- name: Build tags
|
||||||
run: |
|
run: |
|
||||||
go install -tags extended,nodeploy
|
go install -tags extended
|
||||||
- if: matrix.os == 'ubuntu-latest'
|
- if: matrix.os == 'ubuntu-latest'
|
||||||
name: Build for dragonfly
|
name: Build for dragonfly
|
||||||
run: |
|
run: |
|
||||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
|
||||||
*.test
|
*.test
|
||||||
imports.*
|
imports.*
|
||||||
|
dist/
|
||||||
|
public/
|
||||||
|
|
|
@ -21,8 +21,8 @@ COPY --from=xx / /
|
||||||
ARG TARGETPLATFORM
|
ARG TARGETPLATFORM
|
||||||
RUN xx-apk add musl-dev gcc g++
|
RUN xx-apk add musl-dev gcc g++
|
||||||
|
|
||||||
# Optionally set HUGO_BUILD_TAGS to "none" or "nodeploy" when building like so:
|
# Optionally set HUGO_BUILD_TAGS to "none" or "withdeploy" when building like so:
|
||||||
# docker build --build-arg HUGO_BUILD_TAGS=nodeploy .
|
# docker build --build-arg HUGO_BUILD_TAGS=withdeploy .
|
||||||
#
|
#
|
||||||
# We build the extended version by default.
|
# We build the extended version by default.
|
||||||
ARG HUGO_BUILD_TAGS="extended"
|
ARG HUGO_BUILD_TAGS="extended"
|
||||||
|
|
|
@ -11,21 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !nodeploy
|
//go:build withdeploy
|
||||||
// +build !nodeploy
|
// +build withdeploy
|
||||||
|
|
||||||
// Copyright 2024 The Hugo Authors. All rights reserved.
|
|
||||||
//
|
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
|
|
||||||
package commands
|
package commands
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build nodeploy
|
//go:build !withdeploy
|
||||||
// +build nodeploy
|
// +build !withdeploy
|
||||||
|
|
||||||
// Copyright 2024 The Hugo Authors. All rights reserved.
|
// Copyright 2024 The Hugo Authors. All rights reserved.
|
||||||
//
|
//
|
||||||
|
@ -31,6 +31,7 @@ package commands
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
|
|
||||||
"github.com/bep/simplecobra"
|
"github.com/bep/simplecobra"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
@ -40,7 +41,7 @@ func newDeployCommand() simplecobra.Commander {
|
||||||
return &simpleCommand{
|
return &simpleCommand{
|
||||||
name: "deploy",
|
name: "deploy",
|
||||||
run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) error {
|
run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) error {
|
||||||
return nil
|
return errors.New("deploy not supported in this version of Hugo; install a release with 'withdeploy' in the archive filename or build yourself with the 'withdeploy' build tag. Also see https://github.com/gohugoio/hugo/pull/12995")
|
||||||
},
|
},
|
||||||
withc: func(cmd *cobra.Command, r *rootCommand) {
|
withc: func(cmd *cobra.Command, r *rootCommand) {
|
||||||
cmd.Hidden = true
|
cmd.Hidden = true
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !nodeploy
|
//go:build withdeploy
|
||||||
// +build !nodeploy
|
// +build withdeploy
|
||||||
|
|
||||||
package deploy
|
package deploy
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !nodeploy
|
//go:build withdeploy
|
||||||
// +build !nodeploy
|
// +build withdeploy
|
||||||
|
|
||||||
package deploy
|
package deploy
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !solaris && !nodeploy
|
//go:build !solaris && withdeploy
|
||||||
// +build !solaris,!nodeploy
|
// +build !solaris,withdeploy
|
||||||
|
|
||||||
package deploy
|
package deploy
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !nodeploy
|
//go:build withdeploy
|
||||||
// +build !nodeploy
|
// +build withdeploy
|
||||||
|
|
||||||
package deploy
|
package deploy
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !nodeploy
|
//go:build withdeploy
|
||||||
// +build !nodeploy
|
// +build withdeploy
|
||||||
|
|
||||||
package deployconfig
|
package deployconfig
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
//go:build !nodeploy
|
//go:build withdeploy
|
||||||
// +build !nodeploy
|
// +build withdeploy
|
||||||
|
|
||||||
package deploy
|
package deploy
|
||||||
|
|
||||||
|
|
|
@ -119,6 +119,24 @@ archive_alias_replacements = { "linux-amd64.tar.gz" = "Linux-64bit.tar.gz" }
|
||||||
[[builds.os.archs]]
|
[[builds.os.archs]]
|
||||||
goarch = "amd64"
|
goarch = "amd64"
|
||||||
|
|
||||||
|
[[builds]]
|
||||||
|
path = "container1/unix/extended-withdeploy"
|
||||||
|
|
||||||
|
[builds.build_settings]
|
||||||
|
flags = ["-buildmode", "exe", "-tags", "extended,withdeploy"]
|
||||||
|
env = ["CGO_ENABLED=1"]
|
||||||
|
|
||||||
|
[[builds.os]]
|
||||||
|
goos = "darwin"
|
||||||
|
[builds.os.build_settings]
|
||||||
|
env = ["CGO_ENABLED=1", "CC=o64-clang", "CXX=o64-clang++"]
|
||||||
|
[[builds.os.archs]]
|
||||||
|
goarch = "universal"
|
||||||
|
[[builds.os]]
|
||||||
|
goos = "linux"
|
||||||
|
[[builds.os.archs]]
|
||||||
|
goarch = "amd64"
|
||||||
|
|
||||||
[[builds]]
|
[[builds]]
|
||||||
path = "container2/linux/extended"
|
path = "container2/linux/extended"
|
||||||
|
|
||||||
|
@ -173,6 +191,10 @@ archive_alias_replacements = { "linux-amd64.tar.gz" = "Linux-64bit.tar.gz" }
|
||||||
paths = ["builds/container1/unix/extended/**"]
|
paths = ["builds/container1/unix/extended/**"]
|
||||||
[archives.archive_settings]
|
[archives.archive_settings]
|
||||||
name_template = "{{ .Project }}_extended_{{ .Tag | trimPrefix `v` }}_{{ .Goos }}-{{ .Goarch }}"
|
name_template = "{{ .Project }}_extended_{{ .Tag | trimPrefix `v` }}_{{ .Goos }}-{{ .Goarch }}"
|
||||||
|
[[archives]]
|
||||||
|
paths = ["builds/container1/unix/extended-withdeploy/**"]
|
||||||
|
[archives.archive_settings]
|
||||||
|
name_template = "{{ .Project }}_extended_withdeploy_{{ .Tag | trimPrefix `v` }}_{{ .Goos }}-{{ .Goarch }}"
|
||||||
[[archives]]
|
[[archives]]
|
||||||
# Only extended builds in container2.
|
# Only extended builds in container2.
|
||||||
paths = ["builds/container2/**"]
|
paths = ["builds/container2/**"]
|
||||||
|
|
|
@ -334,7 +334,7 @@ func buildFlags() []string {
|
||||||
func buildTags() string {
|
func buildTags() string {
|
||||||
// To build the extended Hugo SCSS/SASS enabled version, build with
|
// To build the extended Hugo SCSS/SASS enabled version, build with
|
||||||
// HUGO_BUILD_TAGS=extended mage install etc.
|
// HUGO_BUILD_TAGS=extended mage install etc.
|
||||||
// To build without `hugo deploy` for smaller binary, use HUGO_BUILD_TAGS=nodeploy
|
// To build with `hugo deploy`, use HUGO_BUILD_TAGS=withdeploy
|
||||||
if envtags := os.Getenv("HUGO_BUILD_TAGS"); envtags != "" {
|
if envtags := os.Getenv("HUGO_BUILD_TAGS"); envtags != "" {
|
||||||
return envtags
|
return envtags
|
||||||
}
|
}
|
||||||
|
|
29
main_withdeploy_test.go
Normal file
29
main_withdeploy_test.go
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
// Copyright 2024 The Hugo Authors. All rights reserved.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
//go:build withdeploy
|
||||||
|
// +build withdeploy
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/rogpeppe/go-internal/testscript"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestWithdeploy(t *testing.T) {
|
||||||
|
p := commonTestScriptsParam
|
||||||
|
p.Dir = "testscripts/withdeploy"
|
||||||
|
testscript.Run(t, p)
|
||||||
|
}
|
|
@ -1,17 +1,12 @@
|
||||||
# Test the gen commands.
|
# Test the gen commands.
|
||||||
# Note that adding new commands will require updating the NUM_COMMANDS value.
|
|
||||||
env NUM_COMMANDS=44
|
|
||||||
|
|
||||||
hugo gen -h
|
hugo gen -h
|
||||||
stdout 'Generate documentation for your project using Hugo''s documentation engine, including syntax highlighting for various programming languages\.'
|
stdout 'Generate documentation for your project using Hugo''s documentation engine, including syntax highlighting for various programming languages\.'
|
||||||
|
|
||||||
hugo gen doc --dir clidocs
|
hugo gen doc --dir clidocs
|
||||||
checkfilecount $NUM_COMMANDS clidocs
|
|
||||||
|
|
||||||
hugo gen man -h
|
hugo gen man -h
|
||||||
stdout 'up-to-date man pages'
|
stdout 'up-to-date man pages'
|
||||||
hugo gen man --dir manpages
|
hugo gen man --dir manpages
|
||||||
checkfilecount $NUM_COMMANDS manpages
|
|
||||||
|
|
||||||
hugo gen chromastyles -h
|
hugo gen chromastyles -h
|
||||||
stdout 'Generate CSS stylesheet for the Chroma code highlighter'
|
stdout 'Generate CSS stylesheet for the Chroma code highlighter'
|
||||||
|
|
Loading…
Reference in a new issue