mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
Makefile+action: add make unit-module
to test submodules
This commit adds a new command `make unit-module` to run unit tests for submodules to avoid future build errors.
This commit is contained in:
parent
08f4940e88
commit
5296509474
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
@ -186,6 +186,8 @@ jobs:
|
||||
- unit tags="kvdb_postgres"
|
||||
- unit tags="kvdb_sqlite"
|
||||
- btcd unit-race
|
||||
- unit-module
|
||||
|
||||
steps:
|
||||
- name: git checkout
|
||||
uses: actions/checkout@v3
|
||||
@ -217,6 +219,7 @@ jobs:
|
||||
path-to-profile: coverage.txt
|
||||
parallel: true
|
||||
|
||||
|
||||
########################
|
||||
# run ubuntu integration tests
|
||||
########################
|
||||
|
4
Makefile
4
Makefile
@ -184,6 +184,10 @@ unit: $(BTCD_BIN)
|
||||
@$(call print, "Running unit tests.")
|
||||
$(UNIT)
|
||||
|
||||
unit-module:
|
||||
@$(call print, "Running submodule unit tests.")
|
||||
scripts/unit_test_modules.sh
|
||||
|
||||
unit-debug: $(BTCD_BIN)
|
||||
@$(call print, "Running debug unit tests.")
|
||||
$(UNIT_DEBUG)
|
||||
|
27
scripts/unit_test_modules.sh
Executable file
27
scripts/unit_test_modules.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
IGNORE="tools"
|
||||
SUBMODULES=$(find . -mindepth 2 -name "go.mod" | cut -d'/' -f2 | grep -v "$IGNORE")
|
||||
|
||||
for submodule in $SUBMODULES
|
||||
do
|
||||
pushd $submodule
|
||||
|
||||
echo "Running submodule unit tests in $(pwd)"
|
||||
echo "testing $submodule..."
|
||||
go test -timeout=5m || exit 1
|
||||
|
||||
if [[ "$submodule" == "kvdb" ]]
|
||||
then
|
||||
echo "testing $submodule with sqlite..."
|
||||
go test -tags="kvdb_sqlite" -timeout=5m || exit 1
|
||||
|
||||
echo "testing $submodule with postgres..."
|
||||
go test -tags="kvdb_postgres" -timeout=5m || exit 1
|
||||
|
||||
echo "testing $submodule with etcd..."
|
||||
go test -tags="kvdb_etcd" -timeout=5m || exit 1
|
||||
fi
|
||||
|
||||
popd
|
||||
done
|
Loading…
Reference in New Issue
Block a user