summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-23 09:26:23 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-30 17:32:25 +0100
commitcea157402365f34a69882110a4208999728007a6 (patch)
treebc29f699e7c901c219cffc5f50fba99dca53d5bd /.travis.yml
parentf9f779786edcefc4449a14cfc04dd93379f71373 (diff)
Add Dart Sass support
But note that the Dart Sass Embedded Protocol is still in beta (beta 5), a main release scheduled for Q1 2021. Fixes #7380 Fixes #8102
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml78
1 files changed, 0 insertions, 78 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 10756e14d..000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,78 +0,0 @@
-language: go
-
-dist: bionic
-
-env:
- global:
- - CACHE_NAME=${TRAVIS_ARCH}
- - GO111MODULE=on
- - GOPROXY=https://proxy.golang.org
- - HUGO_BUILD_TAGS=extended
-
-git:
- depth: false
-go:
- - "1.14.8"
- - "1.15.1"
- - master
-
-arch:
- - amd64
- - arm64
-
-os:
- - linux
- - osx
- - windows
-
-jobs:
- allow_failures:
- - go: master
- - arch: arm64
- fast_finish: true
- exclude:
- - os: windows
- go: master
- - arch: arm64
- os: osx
- - arch: arm64
- os: windows
-
-cache:
- directories:
- - $HOME/gopath/pkg/mod
- - $HOME/.cache/go-build
- - $HOME/Library/Caches/go-build
- - $HOME/AppData/Local/go-build
-
-before_install:
- - df -h
- # https://travis-ci.community/t/go-cant-find-gcc-with-go1-11-1-on-windows/293/5
- - if [ "$TRAVIS_OS_NAME" = "windows" ]; then
- choco install mingw -y;
- choco install -y --force nodejs;
- export PATH=/c/tools/mingw64/bin:"$PATH";
- fi
- - gem install asciidoctor
- - type asciidoctor
-
-install:
- - mkdir -p $HOME/src
- - mv $TRAVIS_BUILD_DIR $HOME/src
- - export TRAVIS_BUILD_DIR=$HOME/src/hugo
- - cd $HOME/src/hugo
- - go get github.com/magefile/mage
-
-script:
- - go mod download
- - go mod verify
- - mage -v test
- - if [ "$TRAVIS_ARCH" = "amd64" ]; then
- mage -v check;
- else
- HUGO_TIMEOUT=30000 mage -v check;
- fi
- - mage -v hugo
- - HUGO_IGNOREERRORS=error-remote-getjson ./hugo -s docs/
- - HUGO_IGNOREERRORS=error-remote-getjson ./hugo --renderToMemory -s docs/
- - df -h