emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/yasnippet-snippets 02529f8 1/9: Add .circleci/config.yml


From: ELPA Syncer
Subject: [nongnu] elpa/yasnippet-snippets 02529f8 1/9: Add .circleci/config.yml
Date: Tue, 17 Aug 2021 16:57:37 -0400 (EDT)

branch: elpa/yasnippet-snippets
commit 02529f802d08840ea31b5fd5cb46813349a29994
Author: Andrea Crotti <andrea.crotti.0@gmail.com>
Commit: Andrea Crotti <andrea.crotti.0@gmail.com>

    Add .circleci/config.yml
---
 .circleci/config.yml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..af2b26b
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,48 @@
+# Clojure CircleCI 2.0 configuration file
+#
+# Check https://circleci.com/docs/2.0/language-clojure/ for more details
+#
+version: 2.1
+
+jobs:
+  build:
+    docker:
+      # specify the version you desire here
+      - image: circleci/clojure:lein-2.9.5
+
+      # Specify service dependencies here if necessary
+      # CircleCI maintains a library of pre-built images
+      # documented at https://circleci.com/docs/2.0/circleci-images/
+      # - image: circleci/postgres:9.4
+
+    working_directory: ~/repo
+
+    environment:
+      LEIN_ROOT: "true"
+      # Customize the JVM maximum heap limit
+      JVM_OPTS: -Xmx3200m
+
+    steps:
+      - checkout
+
+      # Download and cache dependencies
+      - restore_cache:
+          keys:
+            - v1-dependencies-{{ checksum "project.clj" }}
+            # fallback to using the latest cache if no exact match is found
+            - v1-dependencies-
+
+      - run: lein deps
+
+      - save_cache:
+          paths:
+            - ~/.m2
+          key: v1-dependencies-{{ checksum "project.clj" }}
+
+      # run tests!
+      - run: lein test
+
+workflows:
+  build:
+    jobs:
+      - build



reply via email to

[Prev in Thread] Current Thread [Next in Thread]