From e138f5f2c046510b348dd1a3dbbdc83c307c07b0 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Fri, 8 Nov 2019 09:22:51 -0800 Subject: [PATCH 1/3] Revert "Remove author because pub complains about it. (#2064)" This reverts commit 88c82b391486aa1ac4fa54975ab421b98b0bc0f2. --- pubspec.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/pubspec.yaml b/pubspec.yaml index 97e0b63ed8..b3f85cd519 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,7 @@ name: dartdoc # Run `grind build` after updating. version: 0.29.0 +author: Dart Team description: A documentation generator for Dart. homepage: https://github.com/dart-lang/dartdoc environment: From b3e211ee2b98c17f52dce647ad594367003a439d Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Fri, 8 Nov 2019 09:25:32 -0800 Subject: [PATCH 2/3] select whether to run publish test based on version --- tool/travis.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tool/travis.sh b/tool/travis.sh index cb4fe5310e..ee67b9ebd4 100755 --- a/tool/travis.sh +++ b/tool/travis.sh @@ -42,7 +42,11 @@ elif [ "$DARTDOC_BOT" = "sdk-analyzer" ]; then DARTDOC_GRIND_STEP=buildbot-no-publish pub run grinder test-with-analyzer-sdk else echo "Running main dartdoc bot" - pub run grinder buildbot + if echo "${DART_VERSION}" | grep -q dev ; then + pub run grinder buildbot-no-publish + else + pub run grinder buildbot + fi if [ -n "$COVERAGE_TOKEN" ] ; then coveralls-lcov --repo-token="${COVERAGE_TOKEN}" lcov.info fi From 18fa5bbdc5868ecbf5cffc08b7036acc5b73d81b Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Fri, 8 Nov 2019 09:59:51 -0800 Subject: [PATCH 3/3] Disable for appveyor --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index ef3b20394f..1b49bf5e55 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,4 +23,4 @@ install: build: off test_script: - - pub run grinder buildbot + - pub run grinder buildbot-no-publish