Skip to content

Commit 53fe2e5

Browse files
committed
Initial commit.
0 parents  commit 53fe2e5

21 files changed

+3537
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
jobs:
3+
test:
4+
machine:
5+
image: circleci/classic:latest
6+
7+
steps:
8+
- checkout
9+
- run:
10+
name: run tests
11+
command: make test
12+
13+
workflows:
14+
version: 2
15+
test:
16+
jobs:
17+
- test:
18+
filters:
19+
tags:
20+
only: /.*/

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/*

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# hidden files
2+
.*
3+
4+
# rust buids / cache
5+
/target
6+
7+
# dist folder
8+
/dist
9+
10+
# build folders
11+
/packaging/vendor/*/*/package
12+
/packaging/vendor/*/*/*.ipk

0 commit comments

Comments
 (0)