From e67b16f1e1586feae8ad4c69e34feb1701a301b8 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 17:48:36 +0200 Subject: [PATCH 01/11] try fix wercker --- wercker.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/wercker.yml b/wercker.yml index dbb213ee32f..1bd511f6023 100644 --- a/wercker.yml +++ b/wercker.yml @@ -1,10 +1,9 @@ -box: golang +box: + id: golang + ports: + - "5000" build: steps: - # Sets the go workspace and places you package - # at the right place in the workspace tree - - setup-go-workspace - # Gets the dependencies - script: name: get hugo From 17f2df0b5530057771864ae7f4b6e99eb67e9dc7 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 17:53:37 +0200 Subject: [PATCH 02/11] try fix wercker --- wercker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wercker.yml b/wercker.yml index 1bd511f6023..b3ae0ccb5c1 100644 --- a/wercker.yml +++ b/wercker.yml @@ -1,7 +1,6 @@ box: id: golang - ports: - - "5000" + build: steps: # Gets the dependencies From 29066131e27aa1f91716fe41142df4cac75b793b Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 17:58:29 +0200 Subject: [PATCH 03/11] try fix wercker --- wercker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wercker.yml b/wercker.yml index b3ae0ccb5c1..93b09849e83 100644 --- a/wercker.yml +++ b/wercker.yml @@ -7,10 +7,10 @@ build: - script: name: get hugo code: | - go get github.com/gohugoio/hugo + git clone https://github.com/gohugoio/hugo.git && cd hugo && go install # Build the project - script: name: build site code: | - cd exampleSite && hugo \ No newline at end of file + ls && cd exampleSite && hugo \ No newline at end of file From a04a8baf2f7432ea2f1211aa10e4a1a7bfc1dea0 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 18:03:28 +0200 Subject: [PATCH 04/11] try fix wercker --- wercker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wercker.yml b/wercker.yml index 93b09849e83..79cacffc2ce 100644 --- a/wercker.yml +++ b/wercker.yml @@ -13,4 +13,4 @@ build: - script: name: build site code: | - ls && cd exampleSite && hugo \ No newline at end of file + cd exampleSite && ls && ./hugo \ No newline at end of file From de051add0c5d37bdfe743e8e75738020d812a7a6 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 18:06:12 +0200 Subject: [PATCH 05/11] try fix wercker --- wercker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wercker.yml b/wercker.yml index 79cacffc2ce..5a00c2850d8 100644 --- a/wercker.yml +++ b/wercker.yml @@ -13,4 +13,4 @@ build: - script: name: build site code: | - cd exampleSite && ls && ./hugo \ No newline at end of file + pwd && cd exampleSite && pwd && hugo \ No newline at end of file From 50652288366222d6f637085735f195478412e4cd Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 18:08:39 +0200 Subject: [PATCH 06/11] try fix wercker --- wercker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wercker.yml b/wercker.yml index 5a00c2850d8..8ff78bf2561 100644 --- a/wercker.yml +++ b/wercker.yml @@ -13,4 +13,4 @@ build: - script: name: build site code: | - pwd && cd exampleSite && pwd && hugo \ No newline at end of file + cd exampleSite && hugo --theme source \ No newline at end of file From 75c0b797f08001f198e31d9f663adb28d30ea905 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 18:18:50 +0200 Subject: [PATCH 07/11] try fix wercker --- wercker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wercker.yml b/wercker.yml index 8ff78bf2561..6ce72b92126 100644 --- a/wercker.yml +++ b/wercker.yml @@ -13,4 +13,4 @@ build: - script: name: build site code: | - cd exampleSite && hugo --theme source \ No newline at end of file + ls layouts/shortcodes && cd exampleSite && hugo --theme source \ No newline at end of file From 77c35ae1d09039034fe9848ab86a1ea25b04954d Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 19:06:45 +0200 Subject: [PATCH 08/11] try fix wercker --- wercker.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/wercker.yml b/wercker.yml index 6ce72b92126..24ac6b9d47b 100644 --- a/wercker.yml +++ b/wercker.yml @@ -1,8 +1,10 @@ -box: - id: golang - +box: golang build: steps: + # Sets the go workspace and places you package + # at the right place in the workspace tree + - setup-go-workspace + # Gets the dependencies - script: name: get hugo @@ -13,4 +15,4 @@ build: - script: name: build site code: | - ls layouts/shortcodes && cd exampleSite && hugo --theme source \ No newline at end of file + cd exampleSite && hugo \ No newline at end of file From 3782f80e7e9086966b26c1567a47778fa0027eaa Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 19:07:54 +0200 Subject: [PATCH 09/11] try fix wercker --- wercker.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/wercker.yml b/wercker.yml index 24ac6b9d47b..e9d59b432ff 100644 --- a/wercker.yml +++ b/wercker.yml @@ -1,16 +1,14 @@ box: golang build: steps: - # Sets the go workspace and places you package - # at the right place in the workspace tree - - setup-go-workspace - # Gets the dependencies - script: name: get hugo code: | git clone https://github.com/gohugoio/hugo.git && cd hugo && go install - + # Sets the go workspace and places you package + # at the right place in the workspace tree + - setup-go-workspace # Build the project - script: name: build site From afc196af5aa5331b4f47ba6d3112a2f8ff30e345 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 19:09:25 +0200 Subject: [PATCH 10/11] try fix wercker --- wercker.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wercker.yml b/wercker.yml index e9d59b432ff..b970eb842e3 100644 --- a/wercker.yml +++ b/wercker.yml @@ -6,9 +6,7 @@ build: name: get hugo code: | git clone https://github.com/gohugoio/hugo.git && cd hugo && go install - # Sets the go workspace and places you package - # at the right place in the workspace tree - - setup-go-workspace + # Build the project - script: name: build site From 6935abd443818c38c7fd71ac44f52ce339a8507e Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Wed, 10 Oct 2018 19:10:54 +0200 Subject: [PATCH 11/11] try fix wercker --- wercker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wercker.yml b/wercker.yml index b970eb842e3..e9d59b432ff 100644 --- a/wercker.yml +++ b/wercker.yml @@ -6,7 +6,9 @@ build: name: get hugo code: | git clone https://github.com/gohugoio/hugo.git && cd hugo && go install - + # Sets the go workspace and places you package + # at the right place in the workspace tree + - setup-go-workspace # Build the project - script: name: build site