Add circleci config
This commit is contained in:
parent
e82e765a47
commit
20bb644209
1 changed files with 15 additions and 0 deletions
15
.circleci/config.yml
Normal file
15
.circleci/config.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
version: 2.0
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:6.10
|
||||||
|
working_directory: ~/django-performance-dev-meeting
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Install Hugo
|
||||||
|
command: wget https://github.com/gohugoio/hugo/releases/download/v0.42.2/hugo_0.42.2_Linux-64bit.deb -O /tmp/hugo.deb && sudo dpkg -i /tmp/hugo.deb
|
||||||
|
- run:
|
||||||
|
name: Build site
|
||||||
|
command: hugo -v
|
Reference in a new issue