Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 10, 2021. It is now read-only.

Commite53b172

Browse files
committed
Configure for CircleCI
Update dependencies, fix up existing tests and add CircleCI config.
1 parentbf24d96 commite53b172

File tree

11 files changed

+3018
-37
lines changed

11 files changed

+3018
-37
lines changed

‎.circleci/config.yml‎

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Clojure CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-clojure/ for more details
4+
#
5+
version:2
6+
jobs:
7+
build:
8+
docker:
9+
-image:circleci/clojure:lein-2.9.1-node-browsers
10+
11+
working_directory:~/repo
12+
13+
environment:
14+
LEIN_ROOT:"true"
15+
# Customize the JVM maximum heap limit
16+
JVM_OPTS:-Xmx3200m
17+
18+
steps:
19+
-checkout
20+
21+
# Download and cache dependencies
22+
-restore_cache:
23+
keys:
24+
-v1-dependencies-{{ checksum "project.clj" }}
25+
# fallback to using the latest cache if no exact match is found
26+
-v1-dependencies-
27+
28+
-run:sudo npm install karma-cli -g
29+
-run:npm install
30+
-run:lein deps
31+
32+
-save_cache:
33+
paths:
34+
-~/.m2
35+
key:v1-dependencies-{{ checksum "project.clj" }}
36+
37+
-run:lein doo chrome-headless test once
38+
39+
-store_test_results:
40+
path:target/out/test-results
41+
42+
-store_artifacts:
43+
path:target/out/test-results

‎.gitignore‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
/lib
33
/classes
44
/checkouts
5-
doc
5+
/doc
6+
/node_modules
67
pom.xml
78
pom.xml.asc
89
*.jar

‎.travis.yml‎

Lines changed: 0 additions & 5 deletions
This file was deleted.

‎README.adoc‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ But that is just one of many potentially wickedly cool use-cases for this librar
2020
[cols="1a,1a,1a"]
2121
|===
2222

23-
|image::https://travis-ci.org/rundis/rewrite-cljs.svg["Build Status", link="https://travis-ci.org/rundis/rewrite-cljs"]
23+
|image::https://circleci.com/gh/clj-commons/rewrite-cljs.svg?style=svg["CircleCI", link="https://circleci.com/gh/clj-commons/rewrite-cljs"]
2424
|image::https://img.shields.io/clojars/v/rewrite-cljs.svg[link="http://clojars.org/rewrite-cljs"]
2525
|image::https://badges.gitter.im/Join%20Chat.svg[link="https://gitter.im/rundis/rewrite-cljs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"]
2626

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp