diff options
author | Bjørn Erik Pedersen <[email protected]> | 2023-07-01 16:08:23 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-07-01 18:53:48 +0200 |
commit | 19d76ae96be1e86c5eb3b0f0dff1161082b3ad82 (patch) | |
tree | 9ac82ba51631f3e195d968b92b67d6245c5337c5 /.github | |
parent | 11ecea610617035745e620278a309d98091f527c (diff) | |
download | hugo-19d76ae96be1e86c5eb3b0f0dff1161082b3ad82.tar.gz hugo-19d76ae96be1e86c5eb3b0f0dff1161082b3ad82.zip |
github: Build for Dragonfly in CI build
To discover upstream issues before we release.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f4f0ebfa..7f64f3947 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -104,3 +104,10 @@ jobs: - name: Build tags run: | go install -tags extended,nodeploy + - if: matrix.os == 'ubuntu-latest' + name: Build for dragonfly + run: | + go install + env: + GOARCH: amd64 + GOOS: dragonfly |