diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..226dfe6 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +version: 2 +jobs: + build: + machine: true + working_directory: /tmp/awesome-cv + steps: + - checkout + - run: + name: Compile article + command: | + docker run --rm -w "/doc" -v "$PWD":/doc thomasweise/texlive make + - store_artifacts: + path: /tmp/awesome-cv/examples \ No newline at end of file diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 35c83a9..0000000 --- a/circle.yml +++ /dev/null @@ -1,14 +0,0 @@ -## Customize the test machine -machine: - timezone: - Asia/Seoul - - services: - - docker - -## Customize compile commands -test: - override: - - docker run --rm -w "/doc" -v "$PWD":/doc thomasweise/texlive make - post: - - mv examples/*.pdf $CIRCLE_ARTIFACTS/ \ No newline at end of file