Skip to content

Commit

Permalink
chore: Add lib artifacts to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikthebird committed Oct 15, 2024
1 parent 8f48616 commit 192f1f6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,12 @@ jobs:
git add ./internal/api
git commit --allow-empty -m '[skip ci] Built release libraries'
git push origin $CIRCLE_BRANCH
git rm --cached internal/api/libwasmvm.x86_64.so
git rm --cached internal/api/libwasmvm.aarch64.so
git rm --cached internal/api/libwasmvm.dylib
git add ./internal/api
git commit -m '[skip ci] Ignore generated artifacts'
git push origin $CIRCLE_BRANCH
build_static_lib:
machine:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

# no static libraries (35MB+)
/internal/api/lib*.a
/internal/api/lib*.so
/internal/api/lib*.dylib
/internal/api/libwasmvm.x86_64.so

# artifacts from compile tests
/build/
Expand Down
Binary file removed internal/api/libwasmvm.aarch64.so
Binary file not shown.
Binary file removed internal/api/libwasmvm.dylib
Binary file not shown.
Binary file removed internal/api/libwasmvm.x86_64.so
Binary file not shown.

0 comments on commit 192f1f6

Please sign in to comment.