From a850617ac29a671f64eb57e3b96dcc1b036ae8bf Mon Sep 17 00:00:00 2001 From: "Posquit0.BJ" Date: Mon, 16 Jan 2017 03:55:14 +0900 Subject: [PATCH 1/3] Add circleci --- circle.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 circle.yml diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..f788155 --- /dev/null +++ b/circle.yml @@ -0,0 +1,19 @@ +## Customize the test machine +machine: + timezone: + Asia/Seoul + + services: + - docker + +## Customize dependencies +dependencies: + override: + - apt-get install texlive-full + +## Customize compile commands +compile: + override: + - make + post: + - mv examples/*.pdf $CIRCLE_ARTIFACTS/ \ No newline at end of file From c1f614667418f01b67ff06ed91fc035ec9184d42 Mon Sep 17 00:00:00 2001 From: "Posquit0.BJ" Date: Mon, 16 Jan 2017 03:56:42 +0900 Subject: [PATCH 2/3] Add status badge for circleci --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b93d355..393197b 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@
+[![CircleCI](https://circleci.com/gh/posquit0/Awesome-CV.svg?style=svg)](https://circleci.com/gh/posquit0/Awesome-CV) [![Example](https://img.shields.io/badge/example-pdf-green.svg)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)
From 0ac81cc17e258d6c2e9cd5983e7d0d97ed2e9763 Mon Sep 17 00:00:00 2001 From: "Posquit0.BJ" Date: Mon, 16 Jan 2017 03:57:37 +0900 Subject: [PATCH 3/3] Fix circleci configuration --- circle.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/circle.yml b/circle.yml index f788155..35c83a9 100644 --- a/circle.yml +++ b/circle.yml @@ -6,14 +6,9 @@ machine: services: - docker -## Customize dependencies -dependencies: - override: - - apt-get install texlive-full - ## Customize compile commands -compile: +test: override: - - make + - docker run --rm -w "/doc" -v "$PWD":/doc thomasweise/texlive make post: - mv examples/*.pdf $CIRCLE_ARTIFACTS/ \ No newline at end of file