Skip to content

Commit dbfaf7c

Browse files
committed
Merge branch 'master' of https://github.com/KiCad/kicad-library into add_modules_arduino
2 parents 7696547 + 19b70ff commit dbfaf7c

File tree

1,382 files changed

+18418294
-632044
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,382 files changed

+18418294
-632044
lines changed

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
* text=lf
1+
* text=auto
22
*.wrl -diff
33
*.pack binary
44
*.png binary
55
*.step binary
6+
*.stp binary
7+
*.STEP binary
8+
*.STP binary
69
*.wings binary
710
*.svg binary
811
*.pdf binary

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
sudo: required
2+
before_install:
3+
- git clone https://github.com/KiCad/kicad-library-utils /home/travis/build/kicad-library-utils
4+
- git clone https://github.com/KiCad/kicad-library /home/travis/build/kicad-library-old
5+
6+
script:
7+
- sudo bash ./library-check.sh $TRAVIS_BUILD_DIR

library-check.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error=0
2+
DATA=()
3+
for files in library/*.lib; do
4+
DATA+=($files)
5+
done
6+
cd /home/travis/build/kicad-library-utils/schlib
7+
for file in "${DATA[@]}"; do
8+
python3 comparelibs.py --check --new /$1/$file --old /home/travis/build/kicad-library-old/$file
9+
error="$(($error+$?))"
10+
done
11+
exit $error

0 commit comments

Comments
 (0)