shithub: hugo

Download patch

ref: 59cdad325a1503c080c9007014c5ad76fd09f81d
parent: 6022f219f1043138d80a821b48b8aab8a0eeeeef
author: Bjørn Erik Pedersen <[email protected]>
date: Tue Aug 28 14:36:30 EDT 2018

release: Fix CircleCI script

--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,8 +1,11 @@
 defaults: &defaults
   working_directory: /go/src/github.com/gohugoio
   docker:
-      - image: bepsays/ci-goreleaser:1.11-1
-    
+      - image: bepsays/ci-goreleaser:1.11-2
+  environment:
+    GO111MODULE: "on"
+    CGO_ENABLED: "0"
+
 version: 2
 jobs:
   build:
@@ -12,10 +15,11 @@
           path: hugo
       - run:
             command: |
-                env GO111MODULE=on go get github.com/magefile/mage
                 git clone [email protected]:gohugoio/hugoDocs.git
                 cd hugo
-                mage check
+                go mod download
+                sleep 5
+                go test ./...
       - persist_to_workspace:
           root: .
           paths: .