Skip to content

Commit

Permalink
chore(ci): add circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonzq committed Feb 16, 2020
1 parent f629b62 commit 6be6295
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: 2
jobs:
build-check:
parameters:
example-site-path:
type: string
theme-path:
type: string
docker:
- image: cibuilds/hugo:0.64
working_directory: ~/LoveIt
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: cd << parameters.example-site-path >>
- run:
name: "Run Hugo"
command: HUGO_ENV=production hugo --themesDir << parameters.theme-path >> -v --minify --gc
- run:
name: "Test Website"
command: htmlproofer public --allow-hash-href --empty-alt-ignore --disable-external
workflows:
version: 2
build-check-exampleSite:
jobs:
- build-check:
example-site-path: exampleSite
theme-path: ../..
build-check-exampleSite-zh:
jobs:
- build-check:
example-site-path: exampleSite/zh
theme-path: ../../..

0 comments on commit 6be6295

Please sign in to comment.