chore: add just files to streamline common tasks
This commit is contained in:
parent
896303f487
commit
267685bd58
11
bdk-android/justfile
Normal file
11
bdk-android/justfile
Normal file
@ -0,0 +1,11 @@
|
||||
test:
|
||||
./gradlew connectedAndroidTest
|
||||
|
||||
onetest TEST:
|
||||
./gradlew test --tests {{TEST}}
|
||||
|
||||
build:
|
||||
./gradlew buildAndroidLib
|
||||
|
||||
publishlocal:
|
||||
./gradlew publishToMavenLocal --exclude-task signMavenPublication
|
2
bdk-ffi/justfile
Normal file
2
bdk-ffi/justfile
Normal file
@ -0,0 +1,2 @@
|
||||
test:
|
||||
cargo test --lib
|
14
bdk-jvm/justfile
Normal file
14
bdk-jvm/justfile
Normal file
@ -0,0 +1,14 @@
|
||||
test:
|
||||
./gradlew test
|
||||
|
||||
offlinetests:
|
||||
./gradlew test -P excludeConnectedTests
|
||||
|
||||
onetest TEST:
|
||||
./gradlew test --tests {{TEST}}
|
||||
|
||||
build:
|
||||
./gradlew buildJvmLib
|
||||
|
||||
publishlocal:
|
||||
./gradlew publishToMavenLocal --exclude-task signMavenPublication
|
5
bdk-python/justfile
Normal file
5
bdk-python/justfile
Normal file
@ -0,0 +1,5 @@
|
||||
test:
|
||||
python -m unittest --verbose
|
||||
|
||||
maclocalbuild:
|
||||
bash ./scripts/generate-macos-arm64.sh && python3 setup.py bdist_wheel --verbose
|
8
bdk-swift/justfile
Normal file
8
bdk-swift/justfile
Normal file
@ -0,0 +1,8 @@
|
||||
build:
|
||||
bash ./build-local-swift.sh
|
||||
|
||||
test:
|
||||
swift test
|
||||
|
||||
offlinetests:
|
||||
swift test --skip LiveWalletTests --skip LiveTxBuilderTests
|
Loading…
x
Reference in New Issue
Block a user