From 4827ab8b85bbdad10fcc0805dad6dcb1d54833cc Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Sun, 14 Apr 2019 05:34:58 +0000 Subject: [PATCH] Add CI configuration file --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..6fd497f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,11 @@ +version: 2 +jobs: + build: + docker: + - image: rust + steps: + - run: apt -y update --fix-missing + - run: apt -y install libgc-dev + - checkout + - run: cargo build + - run: cd examples && ./test.sh