From 408adaae26c1ee480188c8c38815cb98b6afda43 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sun, 25 Jul 2021 12:29:26 +0200 Subject: [PATCH] Add gb-boilerplate and gb-starter-kit to test suite Fixes one item of #849 Note that the two projects were added *before* the two pret ones, as they are much simpler and build faster. This should provide better early feedback e.g. in CI. --- test/.gitignore | 2 ++ test/fetch-test-deps.sh | 10 ++++++---- test/run-tests.sh | 4 +++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/test/.gitignore b/test/.gitignore index 32dd40f7f..13e879962 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -1,3 +1,5 @@ +/gb-boilerplate/ +/gb-starter-kit/ /pokecrystal/ /pokered/ /ucity/ diff --git a/test/fetch-test-deps.sh b/test/fetch-test-deps.sh index d8d9d3d88..5020e328b 100755 --- a/test/fetch-test-deps.sh +++ b/test/fetch-test-deps.sh @@ -57,7 +57,7 @@ case "$actionname" in action() { # owner/repo shallow-since commit if [ ! -d ${1##*/} ]; then - git clone https://github.com/$1.git --shallow-since=$2 --single-branch + git clone https://github.com/$1.git --recursive --shallow-since=$2 --single-branch fi pushd ${1##*/} git fetch @@ -70,8 +70,10 @@ case "$actionname" in } esac +action ISSOtm/gb-boilerplate 2023-11-04 06ea1ea0fad55307d5b940647da339e21c79b637 +action ISSOtm/gb-starter-kit 2023-11-04 aa5d9a7a4344343436ded80de27da7bcdb2dfb15 if "$nonfree"; then - action pret/pokecrystal 2023-10-22 38667169809b81eb39990b4341f9919332d27248 - action pret/pokered 2023-10-10 b302e93674f376f2881cbd931a698345ad27bec3 + action pret/pokecrystal 2023-10-22 38667169809b81eb39990b4341f9919332d27248 + action pret/pokered 2023-10-10 b302e93674f376f2881cbd931a698345ad27bec3 fi -action AntonioND/ucity 2023-11-02 c781ae20c0b319262b19b51e5067a2c93cf3b362 +action AntonioND/ucity 2023-11-02 c781ae20c0b319262b19b51e5067a2c93cf3b362 diff --git a/test/run-tests.sh b/test/run-tests.sh index ab6b0a788..716ec8ab1 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -64,8 +64,10 @@ test_downstream() { # owner/repo make-target popd } +test_downstream ISSOtm/gb-boilerplate '' +test_downstream ISSOtm/gb-starter-kit '' if "$nonfree"; then test_downstream pret/pokecrystal compare test_downstream pret/pokered compare fi -test_downstream AntonioND/ucity '' +test_downstream AntonioND/ucity ''