Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2019-11-16 16:38:27 +0300
committerMatt Stratton <matt.stratton@gmail.com>2019-11-16 16:38:27 +0300
commitd4dcb78af2df4b6717503e027a61dbcd1ae7ea36 (patch)
treeff9d96182badeb6b17ce737c7e5501cb6fa6a388
parentd0cafa32cea50a3fda18680eac826df2674476db (diff)
Add blue grid test
-rw-r--r--.circleci/config.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 38476c3..4454ede 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -11,9 +11,24 @@ jobs:
name: "Run hugo against default config"
command: cd exampleSite && ls && pwd && HUGO_ENV=production hugo -v -d workspace/public --themesDir ../.. --theme=castanet --buildDrafts=false
+ test-blue-grid:
+ docker:
+ - image: cibuilds/hugo:0.58.3
+ working_directory: castanet
+
+ steps:
+ - checkout
+ - run:
+ name: "Test blue-grid"
+ command: cd exampleSite && ls && pwd && HUGO_ENV=production hugo -v --d workspace/test/blue-grid --config ../test/blue-grid-config.toml --themesDir ../.. --theme=castanet --buildDrafts=false
+
+
workflows:
version: 2
build-test:
jobs:
- build
+ - test-blue-grid:
+ requires:
+ - build