From 431da37fba9821767752ae53688ab1c513fc18b1 Mon Sep 17 00:00:00 2001 From: Kohei Ota Date: Mon, 18 Jun 2018 15:46:16 +0900 Subject: [PATCH] Update CircleCI 2.0 --- .circleci/config.yml | 13 +++++++++++++ circle.yml | 14 -------------- 2 files changed, 13 insertions(+), 14 deletions(-) create mode 100644 .circleci/config.yml delete mode 100644 circle.yml 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