4405d34f4b
- Add test-linux-unit CI job; release now depends on tests passing - Replace LOCK(cs_wallet) with TRY_LOCK in transactiontablemodel to avoid GUI freezes - Add build artifacts to .gitignore (dist/, zips, object scripts) - Add unit test instructions to README Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
64 lines
566 B
Plaintext
64 lines
566 B
Plaintext
# Build artifacts
|
|
*.o
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.a
|
|
/dist/
|
|
build/
|
|
release/
|
|
debug/
|
|
/Makefile
|
|
Makefile.Debug
|
|
Makefile.Release
|
|
.qmake.stash
|
|
object_script.triangles-qt.Debug
|
|
object_script.triangles-qt.Release
|
|
/*.zip
|
|
/*.tar.gz
|
|
|
|
# Qt
|
|
moc_*.cpp
|
|
ui_*.h
|
|
qrc_*.cpp
|
|
*.pro.user
|
|
*.pro.user.*
|
|
|
|
# Blockchain data
|
|
*.dat
|
|
*.log
|
|
peers.dat
|
|
wallet.dat
|
|
*.lock
|
|
database/
|
|
txleveldb/
|
|
blktree/
|
|
chainstate/
|
|
blocks/
|
|
*.bak
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Temp files
|
|
*.json
|
|
.*.json
|
|
temp/
|
|
tmp/
|
|
|
|
# Private/Local
|
|
triangles.conf
|
|
*.pem
|
|
*.key
|
|
*.cert
|
|
*.gpg
|
|
*.o
|
|
src/trianglesd
|
|
src/obj/
|