diff --git a/.codespellrc b/.codespellrc
index 69e71e6b..98445ae4 100644
--- a/.codespellrc
+++ b/.codespellrc
@@ -1,8 +1,9 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check/.codespellrc
# See: https://github.com/codespell-project/codespell#using-a-config-file
[codespell]
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
ignore-words-list = easly,pullrequest
+skip = ./.git,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock
builtin = clear,informal,en-GB_to_en-US
check-filenames =
check-hidden =
-skip = ./.git,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock
diff --git a/.flake8 b/.flake8
index aae07390..efde3a0c 100644
--- a/.flake8
+++ b/.flake8
@@ -1,4 +1,7 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-python/.flake8
# See: https://flake8.pycqa.org/en/latest/user/configuration.html
+# The code style defined in this file is the official standardized style to be used in all Arduino tooling projects and
+# should not be modified.
[flake8]
doctests = True
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 97cab75f..7adb9875 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -3,6 +3,7 @@ version: 2
updates:
# Configure check for outdated GitHub Actions actions in workflows.
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/dependabot/README.md
# See: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-actions-up-to-date-with-dependabot
- package-ecosystem: github-actions
directory: / # Check the repository's workflows under /.github/workflows/
diff --git a/.github/workflows/check-go-task.yml b/.github/workflows/check-go-task.yml
new file mode 100644
index 00000000..e1e50a35
--- /dev/null
+++ b/.github/workflows/check-go-task.yml
@@ -0,0 +1,223 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-go-task.md
+name: Check Go
+
+env:
+ # See: https://github.com/actions/setup-go/tree/v2#readme
+ GO_VERSION: "1.16"
+
+# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
+on:
+ create:
+ push:
+ paths:
+ - ".github/workflows/check-go-task.ya?ml"
+ - "Taskfile.ya?ml"
+ - "**/go.mod"
+ - "**/go.sum"
+ - "**.go"
+ pull_request:
+ paths:
+ - ".github/workflows/check-go-task.ya?ml"
+ - "Taskfile.ya?ml"
+ - "**/go.mod"
+ - "**/go.sum"
+ - "**.go"
+ schedule:
+ # Run every Tuesday at 8 AM UTC to catch breakage caused by changes to tools.
+ - cron: "0 8 * * TUE"
+ workflow_dispatch:
+ repository_dispatch:
+
+jobs:
+ run-determination:
+ runs-on: ubuntu-latest
+ outputs:
+ result: ${{ steps.determination.outputs.result }}
+ steps:
+ - name: Determine if the rest of the workflow should run
+ id: determination
+ run: |
+ RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
+ # The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
+ if [[ \
+ "${{ github.event_name }}" != "create" || \
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
+ ]]; then
+ # Run the other jobs.
+ RESULT="true"
+ else
+ # There is no need to run the other jobs.
+ RESULT="false"
+ fi
+
+ echo "::set-output name=result::$RESULT"
+
+ check-errors:
+ name: check-errors (${{ matrix.module.path }})
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ module:
+ - path: ./
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Check for errors
+ env:
+ GO_MODULE_PATH: ${{ matrix.module.path }}
+ run: task go:vet
+
+ check-outdated:
+ name: check-outdated (${{ matrix.module.path }})
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ module:
+ - path: ./
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Modernize usages of outdated APIs
+ env:
+ GO_MODULE_PATH: ${{ matrix.module.path }}
+ run: task go:fix
+
+ - name: Check if any fixes were needed
+ run: git diff --color --exit-code
+
+ check-style:
+ name: check-style (${{ matrix.module.path }})
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ module:
+ - path: ./
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Install golint
+ run: go install golang.org/x/lint/golint@latest
+
+ - name: Check style
+ env:
+ GO_MODULE_PATH: ${{ matrix.module.path }}
+ run: task --silent go:lint
+
+ check-formatting:
+ name: check-formatting (${{ matrix.module.path }})
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ module:
+ - path: ./
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Format code
+ env:
+ GO_MODULE_PATH: ${{ matrix.module.path }}
+ run: task go:format
+
+ - name: Check formatting
+ run: git diff --color --exit-code
+
+ check-config:
+ name: check-config (${{ matrix.module.path }})
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ module:
+ - path: ./
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Run go mod tidy
+ working-directory: ${{ matrix.module.path }}
+ run: go mod tidy
+
+ - name: Check whether any tidying was needed
+ run: git diff --color --exit-code
diff --git a/.github/workflows/check-go.yml b/.github/workflows/check-go.yml
deleted file mode 100644
index c9a4b460..00000000
--- a/.github/workflows/check-go.yml
+++ /dev/null
@@ -1,107 +0,0 @@
-name: Check Go
-
-# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
-on:
- push:
- paths:
- - ".github/workflows/check-go.yml"
- - "Taskfile.yml"
- - "go.mod"
- - "go.sum"
- - "**.go"
- pull_request:
- paths:
- - ".github/workflows/check-go.yml"
- - "Taskfile.yml"
- - "go.mod"
- - "go.sum"
- - "**.go"
- schedule:
- # Run every Tuesday at 8 AM UTC to catch breakage caused by changes to tools.
- - cron: "0 8 * * TUE"
- workflow_dispatch:
- repository_dispatch:
-
-jobs:
- check-errors:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Task
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Check for errors
- run: task go:vet
-
- check-outdated:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Task
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Modernize usages of outdated APIs
- run: task go:fix
-
- - name: Check if any fixes were needed
- run: git diff --color --exit-code
-
- check-style:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Task
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Check style
- run: task --silent go:lint
-
- check-formatting:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Task
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Format code
- run: task go:format
-
- - name: Check formatting
- run: git diff --color --exit-code
-
- check-config:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Run go mod tidy
- run: go mod tidy
-
- - name: Check whether any tidying was needed
- run: git diff --color --exit-code
diff --git a/.github/workflows/check-license.yml b/.github/workflows/check-license.yml
index 3d48ca1a..91ca62b4 100644
--- a/.github/workflows/check-license.yml
+++ b/.github/workflows/check-license.yml
@@ -1,3 +1,4 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-license.md
name: Check License
env:
@@ -45,19 +46,22 @@ jobs:
- name: Check license file
run: |
+ EXIT_STATUS=0
# See: https://github.com/licensee/licensee
LICENSEE_OUTPUT="$(licensee detect --json --confidence=100)"
DETECTED_LICENSE_FILE="$(echo "$LICENSEE_OUTPUT" | jq .matched_files[0].filename | tr --delete '\r')"
echo "Detected license file: $DETECTED_LICENSE_FILE"
- if [ "$DETECTED_LICENSE_FILE" != "\"$EXPECTED_LICENSE_FILENAME\"" ]; then
- echo "ERROR: detected license file doesn't match expected: $EXPECTED_LICENSE_FILENAME"
- exit 1
+ if [ "$DETECTED_LICENSE_FILE" != "\"${EXPECTED_LICENSE_FILENAME}\"" ]; then
+ echo "::error file=${DETECTED_LICENSE_FILE}::detected license file $DETECTED_LICENSE_FILE doesn't match expected: $EXPECTED_LICENSE_FILENAME"
+ EXIT_STATUS=1
fi
DETECTED_LICENSE_TYPE="$(echo "$LICENSEE_OUTPUT" | jq .matched_files[0].matched_license | tr --delete '\r')"
echo "Detected license type: $DETECTED_LICENSE_TYPE"
- if [ "$DETECTED_LICENSE_TYPE" != "\"$EXPECTED_LICENSE_TYPE\"" ]; then
- echo "ERROR: detected license type doesn't match expected $EXPECTED_LICENSE_TYPE"
- exit 1
+ if [ "$DETECTED_LICENSE_TYPE" != "\"${EXPECTED_LICENSE_TYPE}\"" ]; then
+ echo "::error file=${DETECTED_LICENSE_FILE}::detected license type $DETECTED_LICENSE_TYPE doesn't match expected \"${EXPECTED_LICENSE_TYPE}\""
+ EXIT_STATUS=1
fi
+
+ exit $EXIT_STATUS
diff --git a/.github/workflows/check-prettier-formatting-task.yml b/.github/workflows/check-prettier-formatting-task.yml
index c0813c04..caccbcf9 100644
--- a/.github/workflows/check-prettier-formatting-task.yml
+++ b/.github/workflows/check-prettier-formatting-task.yml
@@ -1,3 +1,4 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-prettier-formatting-task.md
name: Check Prettier Formatting
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
diff --git a/.github/workflows/check-python-task.yml b/.github/workflows/check-python-task.yml
index 9c8af7a9..375130d9 100644
--- a/.github/workflows/check-python-task.yml
+++ b/.github/workflows/check-python-task.yml
@@ -1,5 +1,10 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-python-task.md
name: Check Python
+env:
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
+ PYTHON_VERSION: "3.9"
+
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
on:
push:
@@ -36,7 +41,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v2
with:
- python-version: "3.9"
+ python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
run: pip install poetry
@@ -48,7 +53,10 @@ jobs:
version: 3.x
- name: Run flake8
- run: task python:lint
+ uses: liskin/gh-problem-matcher-wrap@v1
+ with:
+ linters: flake8
+ run: task python:lint
formatting:
runs-on: ubuntu-latest
@@ -60,7 +68,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v2
with:
- python-version: "3.9"
+ python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
run: pip install poetry
diff --git a/.github/workflows/check-taskfiles.yml b/.github/workflows/check-taskfiles.yml
index d7f47964..6d2b6bc5 100644
--- a/.github/workflows/check-taskfiles.yml
+++ b/.github/workflows/check-taskfiles.yml
@@ -1,3 +1,4 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-taskfiles.md
name: Check Taskfiles
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
@@ -26,7 +27,7 @@ jobs:
matrix:
file:
- - ./Taskfile.yml
+ - ./**/Taskfile.yml
steps:
- name: Checkout repository
@@ -39,15 +40,20 @@ jobs:
# See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/taskfile.json
file-url: https://json.schemastore.org/taskfile.json
location: ${{ runner.temp }}/taskfile-schema
- file-name: taskfile.json
- name: Install JSON schema validator
- run: sudo npm install --global ajv-cli
+ run: |
+ sudo npm install \
+ --global \
+ ajv-cli \
+ ajv-formats
- name: Validate ${{ matrix.file }}
run: |
# See: https://github.com/ajv-validator/ajv-cli#readme
ajv validate \
+ --all-errors \
--strict=false \
+ -c ajv-formats \
-s "${{ steps.download-schema.outputs.file-path }}" \
-d "${{ matrix.file }}"
diff --git a/.github/workflows/compare-performance.yml b/.github/workflows/compare-performance.yml
new file mode 100644
index 00000000..8c60f497
--- /dev/null
+++ b/.github/workflows/compare-performance.yml
@@ -0,0 +1,308 @@
+name: Compare Performance
+
+env:
+ # See: https://github.com/actions/setup-go/tree/v2#readme
+ GO_VERSION: "1.16"
+ REPORTS_ARTIFACT_NAME: reports
+
+# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
+on:
+ push:
+ paths:
+ - ".github/workflows/compare-performance.ya?ml"
+ - "**/go.mod"
+ - "**/go.sum"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ pull_request:
+ paths:
+ - ".github/workflows/compare-performance.ya?ml"
+ - "**/go.mod"
+ - "**/go.sum"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ workflow_dispatch:
+ inputs:
+ comparison-ref:
+ description: Comparison ref
+
+jobs:
+ init:
+ runs-on: ubuntu-latest
+
+ outputs:
+ base-ref: ${{ steps.base-ref.outputs.ref }}
+
+ steps:
+ # Repo is required to get the previous tag ref that is the base of the comparison on tag push triggered run.
+ - name: Checkout repository
+ if: ${{ startsWith(github.ref, 'refs/tags/') }}
+ uses: actions/checkout@v2
+
+ - name: Determine comparison ref
+ id: base-ref
+ run: |
+ if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
+ COMPARISON_REF="${{ github.event.inputs.comparison-ref }}"
+ elif [[ "${{ github.event_name }}" == "pull_request" ]]; then
+ COMPARISON_REF="${{ github.base_ref }}"
+ elif [[ "${{ startsWith(github.ref, 'refs/tags/') }}" == "true" ]]; then
+ COMPARISON_REF="$( \
+ git ls-remote \
+ --quiet \
+ --tags \
+ --refs \
+ --sort=version:refname | \
+ cut \
+ --delimiter='/' \
+ --fields=3 | \
+ tail -2 | \
+ head -1
+ )"
+ else
+ COMPARISON_REF="${{ github.event.before }}"
+ fi
+
+ if [[ "$COMPARISON_REF" == "" ]]; then
+ echo "::error::Unable to determine comparison ref"
+ exit 1
+ fi
+
+ echo "::set-output name=ref::$COMPARISON_REF"
+
+ run:
+ name: Run at ${{ matrix.data.ref }} (${{ matrix.data.description }})
+ needs: init
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ data:
+ # Use two copies of each job to catch job-specific anomalous durations.
+ - ref: ${{ github.ref }} # The tip of the branch selected in the workflow dispatch dialog's "Use workflow from" menu
+ description: tip run 1
+ position: after
+ - ref: ${{ github.ref }}
+ description: tip run 2
+ position: after
+ - ref: ${{ needs.init.outputs.base-ref }}
+ description: comparison run 1
+ position: before
+ - ref: ${{ needs.init.outputs.base-ref }}
+ description: comparison run 2
+ position: before
+
+ steps:
+ - name: Set environment variables
+ run: |
+ # See: https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
+ ENGINE_DATA_PATH="${{ runner.temp }}/engine"
+ mkdir --parents "$ENGINE_DATA_PATH"
+ echo "ENGINE_DATA_PATH=${ENGINE_DATA_PATH}" >> "$GITHUB_ENV"
+ echo "GIT_CLONES_PATH=${ENGINE_DATA_PATH}/gitclones" >> "$GITHUB_ENV"
+ echo "LIBRARY_ARCHIVES_PATH=${ENGINE_DATA_PATH}/libraries" >> "$GITHUB_ENV"
+ echo "LOGS_PATH=${ENGINE_DATA_PATH}/logs" >> "$GITHUB_ENV"
+ echo "CONFIG_PATH=${ENGINE_DATA_PATH}/config.json" >> "$GITHUB_ENV"
+ echo "REGISTRY_PATH=${ENGINE_DATA_PATH}/registry.txt" >> "$GITHUB_ENV"
+ echo "REPORTS_PATH=${ENGINE_DATA_PATH}/reports" >> "$GITHUB_ENV"
+
+ - name: Checkout repository
+ uses: actions/checkout@v2
+ with:
+ ref: ${{ matrix.data.ref }}
+
+ - name: Determine appropriate Go version
+ id: go-version
+ run: |
+ if [[ -f "go.mod" ]]; then
+ USE_GO_VERSION="${{ env.GO_VERSION }}"
+ else
+ # Dependency installation for old engine versions fails when not in GOPATH mode. Go <1.16 uses
+ # GO111MODULE=auto by default, meaning it will use GOPATH mode. Old Go versions were used by the old engine
+ # anyway.
+ USE_GO_VERSION="1.14"
+ fi
+ echo "::set-output name=version::$USE_GO_VERSION"
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ steps.go-version.outputs.version }}
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Install latest release of Arduino Lint
+ run: |
+ ARDUINO_LINT_INSTALLATION_PATH="${{ runner.temp }}/arduino-lint"
+ mkdir --parents "$ARDUINO_LINT_INSTALLATION_PATH"
+ curl \
+ -fsSL \
+ https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh \
+ | \
+ BINDIR="$ARDUINO_LINT_INSTALLATION_PATH" \
+ sh
+
+ # Add installation folder to path
+ echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
+
+ - name: Configure Git for `go get` access to private repo
+ run: |
+ if ! [[ -f "go.mod" ]]; then
+ # engine versions prior to 7dd8f69282232919955c82c143fefb14e50d0889 had a dependency that is hosted in a
+ # private repo. The `go.mod` file was added at the same time the dependency was removed, so its presence can
+ # be used as the indicator.
+ git config \
+ --global url."https://${{ secrets.REPO_SCOPE_TOKEN }}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
+ fi
+
+ - name: Build engine
+ run: |
+ task go:build
+
+ - name: Generate configuration file
+ run: |
+ cat > "${{ env.CONFIG_PATH }}" << EOF
+ {
+ "BaseDownloadUrl": "https://downloads.arduino.cc/libraries/",
+ "LibrariesFolder": "${{ env.LIBRARY_ARCHIVES_PATH }}",
+ "LibrariesIndex": "${{ env.ENGINE_DATA_PATH }}/library_index.json",
+ "LogsFolder": "${{ env.ENGINE_DATA_PATH }}/logs",
+ "LibrariesDB": "${{ env.ENGINE_DATA_PATH }}/db.json",
+ "GitClonesFolder": "${{ env.GIT_CLONES_PATH }}",
+ "DoNotRunClamav": true
+ }
+ EOF
+
+ - name: Generate registry file
+ run: |
+ FULL_REGISTRY_PATH="${{ runner.temp }}/registry.txt"
+ curl \
+ --output "$FULL_REGISTRY_PATH" \
+ https://raw.githubusercontent.com/arduino/library-registry/1c3f73b279d2845ff139883c78e733e2954437b8/registry.txt
+
+ # Only use the first part of the file for the test
+ head \
+ -300 \
+ "$FULL_REGISTRY_PATH" > \
+ "${{ env.REGISTRY_PATH }}"
+
+ - name: Run sync on empty environment
+ id: fresh
+ run: |
+ SECONDS=0
+ ./libraries-repository-engine "${{ env.CONFIG_PATH }}" "${{ env.REGISTRY_PATH }}"
+
+ # Define step outputs with the performance data
+ echo "::set-output name=Type::fresh"
+ echo "::set-output name=Duration::$SECONDS"
+ echo "::set-output name=GitClonesSize::$(du --apparent-size --bytes --summarize "${{ env.GIT_CLONES_PATH }}" | cut --fields=1)"
+ echo "::set-output name=LibraryArchivesSize::$(du --apparent-size --bytes --summarize "${{ env.LIBRARY_ARCHIVES_PATH }}" | cut --fields=1)"
+ echo "::set-output name=LogsSize::$(du --apparent-size --bytes --summarize "${{ env.LOGS_PATH }}" | cut --fields=1)"
+
+ - name: Run sync on populated database
+ id: populated
+ run: |
+ SECONDS=0
+ ./libraries-repository-engine "${{ env.CONFIG_PATH }}" "${{ env.REGISTRY_PATH }}"
+
+ # Define step outputs with the performance data
+ echo "::set-output name=Type::populated"
+ echo "::set-output name=Duration::$SECONDS"
+ echo "::set-output name=GitClonesSize::$(du --apparent-size --bytes --summarize "${{ env.GIT_CLONES_PATH }}" | cut --fields=1)"
+ echo "::set-output name=LibraryArchivesSize::$(du --apparent-size --bytes --summarize "${{ env.LIBRARY_ARCHIVES_PATH }}" | cut --fields=1)"
+ echo "::set-output name=LogsSize::$(du --apparent-size --bytes --summarize "${{ env.LOGS_PATH }}" | cut --fields=1)"
+
+ - name: Create report
+ run: |
+ mkdir --parents "${{ env.REPORTS_PATH }}"
+ cat > "${{ env.REPORTS_PATH }}/$RANDOM.json" << EOF
+ {
+ "Ref": "${{ matrix.data.ref }}",
+ "Description": "${{ matrix.data.description }}",
+ "Position": "${{ matrix.data.position }}",
+ "Results": [
+ ${{ toJSON(steps.fresh.outputs) }},
+ ${{ toJSON(steps.populated.outputs) }}
+ ]
+ }
+ EOF
+
+ - name: Upload report to a workflow artifact
+ uses: actions/upload-artifact@v2
+ with:
+ if-no-files-found: error
+ path: ${{ env.REPORTS_PATH }}
+ name: ${{ env.REPORTS_ARTIFACT_NAME }}
+
+ results:
+ needs: run
+ runs-on: ubuntu-latest
+
+ env:
+ REPORTS_PATH: reports
+
+ steps:
+ - name: Download reports
+ uses: actions/download-artifact@v2
+ with:
+ name: ${{ env.REPORTS_ARTIFACT_NAME }}
+ path: ${{ env.REPORTS_PATH }}
+
+ - name: Print results
+ shell: python
+ run: |
+ import json
+ import pathlib
+
+ reports_path = pathlib.Path("${{ env.REPORTS_PATH }}")
+ reports = []
+ for report_path in reports_path.iterdir():
+ with report_path.open() as report_file:
+ reports.append(json.load(fp=report_file))
+
+ sample_size = 0
+ summary_data = {
+ "Duration": [],
+ "GitClonesSize": [],
+ "LibraryArchivesSize": [],
+ "LogsSize": [],
+ }
+ for report in reports:
+ if report["Position"] == "before":
+ sample_size += 1
+ for result in report["Results"]:
+ for key in list(summary_data):
+ type_index = None
+ for index, summary_item in enumerate(summary_data[key]):
+ if summary_item["type"] == result["Type"]:
+ type_index = index
+ break
+ if type_index is None:
+ summary_data[key].append(
+ {"type": result["Type"], "before": 0, "after": 0}
+ )
+ type_index = len(summary_data[key]) - 1
+ summary_data[key][type_index][report["Position"]] += int(result[key])
+
+ print("% change:")
+ for key in list(summary_data):
+ for type_data in summary_data[key]:
+ print(
+ "{key} ({type}): {value}".format(
+ key=key,
+ type=type_data["type"],
+ value=round(
+ 100
+ * (type_data["after"] - type_data["before"])
+ / type_data["before"]
+ ),
+ )
+ )
+
+ print("::group::Full results")
+ print(json.dumps(obj=reports, indent=2))
+ print("::endgroup::")
diff --git a/.github/workflows/publish-go-tester-task.yml b/.github/workflows/publish-go-tester-task.yml
new file mode 100644
index 00000000..8d9ae9bc
--- /dev/null
+++ b/.github/workflows/publish-go-tester-task.yml
@@ -0,0 +1,95 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/publish-go-tester-task.md
+name: Publish Tester Build
+
+env:
+ # See: https://github.com/actions/setup-go/tree/v2#readme
+ GO_VERSION: "1.16"
+
+# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
+on:
+ create:
+ push:
+ paths:
+ - ".github/workflows/publish-go-tester-task.ya?ml"
+ - "go.mod"
+ - "go.sum"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ pull_request:
+ paths:
+ - ".github/workflows/publish-go-tester-task.ya?ml"
+ - "go.mod"
+ - "go.sum"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ workflow_dispatch:
+ repository_dispatch:
+
+jobs:
+ run-determination:
+ runs-on: ubuntu-latest
+ outputs:
+ result: ${{ steps.determination.outputs.result }}
+ steps:
+ - name: Determine if the rest of the workflow should run
+ id: determination
+ run: |
+ RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
+ # The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
+ if [[ \
+ "${{ github.event_name }}" != "create" || \
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
+ ]]; then
+ # Run the other jobs.
+ RESULT="true"
+ else
+ # There is no need to run the other jobs.
+ RESULT="false"
+ fi
+
+ echo "::set-output name=result::$RESULT"
+
+ build:
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Set environment variables
+ run: |
+ # See: https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
+ echo "BUILD_ARCHIVE_PATH=${{ runner.temp }}/libraries-repository-engine_${{ github.sha }}_Linux_64bit.zip" >> "$GITHUB_ENV"
+
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Build application
+ run: task go:build
+
+ # actions/upload-artifact does not maintain file permissions. Putting the executable in an archive avoids the
+ # application becoming non-executable.
+ - name: Archive build
+ run: |
+ zip \
+ -j \
+ "${{ env.BUILD_ARCHIVE_PATH }}" \
+ "./libraries-repository-engine" \
+ "./LICENSE.txt"
+
+ - name: Save binary as workflow artifact
+ uses: actions/upload-artifact@v2
+ with:
+ if-no-files-found: error
+ path: ${{ env.BUILD_ARCHIVE_PATH }}
+ name: libraries-repository-engine
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9d8ad72f..6ddc88f9 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -1,5 +1,9 @@
name: Create Release
+env:
+ # See: https://github.com/actions/setup-go/tree/v2#readme
+ GO_VERSION: "1.16"
+
on:
push:
tags:
@@ -9,6 +13,10 @@ jobs:
release:
runs-on: ubuntu-latest
+ env:
+ # See: https://github.com/fsaintjacques/semver-tool/releases
+ SEMVER_TOOL_VERSION: 3.2.0
+
steps:
- name: Set environment variables
run: |
@@ -17,13 +25,14 @@ jobs:
echo "TAG_SHORT_NAME=$TAG_SHORT_NAME" >> "$GITHUB_ENV"
echo "ARCHIVE_PATH=${{ runner.temp }}/libraries-repository-engine_${TAG_SHORT_NAME}_Linux_64bit.tar.gz" >> "$GITHUB_ENV"
echo "CHANGELOG_PATH=${{ runner.temp }}/CHANGELOG.md" >> "$GITHUB_ENV"
+ echo "SEMVER_TOOL_PATH=${{ runner.temp }}/semver" >> "$GITHUB_ENV"
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- - name: Install Taskfile
+ - name: Install Task
uses: arduino/setup-task@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -32,7 +41,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
- go-version: "1.14"
+ go-version: ${{ env.GO_VERSION }}
- name: Build project
run: task build
@@ -54,20 +63,26 @@ jobs:
case-insensitive-regex: true
changelog-file-path: ${{ env.CHANGELOG_PATH }}
- - name: Identify pre-releases
+ - name: Download semver tool
+ id: download-semver-tool
+ uses: carlosperate/download-file-action@v1.0.3
+ with:
+ file-url: https://github.com/fsaintjacques/semver-tool/archive/${{ env.SEMVER_TOOL_VERSION }}.zip
+ location: ${{ runner.temp }}/semver-tool
+
+ - name: Install semver tool
+ run: |
+ unzip \
+ -p \
+ "${{ steps.download-semver-tool.outputs.file-path }}" \
+ semver-tool-${{ env.SEMVER_TOOL_VERSION }}/src/semver > \
+ "${{ env.SEMVER_TOOL_PATH }}"
+ chmod +x "${{ env.SEMVER_TOOL_PATH }}"
+
+ - name: Identify Prerelease
id: prerelease
- env:
- # See: https://github.com/fsaintjacques/semver-tool/releases/latest
- TOOL_VERSION: 3.2.0
run: |
- INSTALL_PATH="${{ runner.temp }}/semver-tool"
- mkdir -p "$INSTALL_PATH"
- wget --quiet --directory-prefix="$INSTALL_PATH" https://github.com/fsaintjacques/semver-tool/archive/${{ env.TOOL_VERSION }}.zip
- unzip -p "${INSTALL_PATH}/${{ env.TOOL_VERSION }}.zip" semver-tool-${{ env.TOOL_VERSION }}/src/semver >"${INSTALL_PATH}/semver"
- chmod +x "${INSTALL_PATH}/semver"
- if [[ $("${INSTALL_PATH}/semver" get prerel "${{ env.TAG_SHORT_NAME }}") ]]; then
- echo "::set-output name=is-pre::true";
- fi
+ if [[ "$("${{ env.SEMVER_TOOL_PATH }}" get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
- name: Create Release
uses: ncipollo/release-action@v1
diff --git a/.github/workflows/spell-check-task.yml b/.github/workflows/spell-check-task.yml
index 2298a18a..3b594353 100644
--- a/.github/workflows/spell-check-task.yml
+++ b/.github/workflows/spell-check-task.yml
@@ -1,5 +1,10 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md
name: Spell Check
+env:
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
+ PYTHON_VERSION: "3.9"
+
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
on:
push:
@@ -21,7 +26,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v2
with:
- python-version: "3.9"
+ python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry
run: pip install poetry
diff --git a/.github/workflows/test-go-integration-task.yml b/.github/workflows/test-go-integration-task.yml
new file mode 100644
index 00000000..7bbe5d76
--- /dev/null
+++ b/.github/workflows/test-go-integration-task.yml
@@ -0,0 +1,136 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/test-go-integration-task.md
+name: Test Integration
+
+env:
+ # See: https://github.com/actions/setup-go/tree/v2#readme
+ GO_VERSION: "1.16"
+ # See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
+ PYTHON_VERSION: "3.9"
+
+# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
+on:
+ create:
+ push:
+ paths:
+ - ".github/workflows/test-go-integration-task.ya?ml"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ - "go.mod"
+ - "go.sum"
+ - "poetry.lock"
+ - "pyproject.toml"
+ - "tests/**"
+ pull_request:
+ paths:
+ - ".github/workflows/test-go-integration-task.ya?ml"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ - "go.mod"
+ - "go.sum"
+ - "poetry.lock"
+ - "pyproject.toml"
+ - "tests/**"
+ schedule:
+ # Run daily at 8 AM UTC to catch breakage resulting from changes to Arduino Lint.
+ - cron: "0 8 * * *"
+ workflow_dispatch:
+ inputs:
+ arduino-lint-ref:
+ description: Arduino Lint ref (leave empty for latest release)
+ default: ""
+ repository_dispatch:
+
+jobs:
+ run-determination:
+ runs-on: ubuntu-latest
+ outputs:
+ result: ${{ steps.determination.outputs.result }}
+ steps:
+ - name: Determine if the rest of the workflow should run
+ id: determination
+ run: |
+ RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
+ # The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
+ if [[ \
+ "${{ github.event_name }}" != "create" || \
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
+ ]]; then
+ # Run the other jobs.
+ RESULT="true"
+ else
+ # There is no need to run the other jobs.
+ RESULT="false"
+ fi
+
+ echo "::set-output name=result::$RESULT"
+
+ test:
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+
+ strategy:
+ matrix:
+ operating-system:
+ - ubuntu-latest
+
+ runs-on: ${{ matrix.operating-system }}
+
+ env:
+ ARDUINO_LINT_SOURCE_PATH: arduino-lint
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ env.PYTHON_VERSION }}
+
+ - name: Install Poetry
+ run: pip install poetry
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Install latest release of Arduino Lint
+ if: github.event.inputs.arduino-lint-ref == ''
+ run: |
+ ARDUINO_LINT_INSTALLATION_PATH="${{ runner.temp }}/arduino-lint"
+ mkdir --parents "$ARDUINO_LINT_INSTALLATION_PATH"
+ curl \
+ -fsSL \
+ https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh \
+ | \
+ BINDIR="$ARDUINO_LINT_INSTALLATION_PATH" \
+ sh
+
+ # Add installation folder to path
+ echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
+
+ - name: Checkout Arduino Lint repository
+ if: github.event.inputs.arduino-lint-ref != ''
+ uses: actions/checkout@v2
+ with:
+ repository: arduino/arduino-lint
+ ref: ${{ github.event.inputs.arduino-lint-ref }}
+ path: ${{ env.ARDUINO_LINT_SOURCE_PATH }}
+
+ - name: Build Arduino Lint
+ if: github.event.inputs.arduino-lint-ref != ''
+ working-directory: ${{ env.ARDUINO_LINT_SOURCE_PATH }}
+ run: |
+ task build
+ # Add installation folder to path
+ echo "$PWD" >> "$GITHUB_PATH"
+
+ - name: Run integration tests
+ run: task go:test-integration
diff --git a/.github/workflows/test-go-task.yml b/.github/workflows/test-go-task.yml
new file mode 100644
index 00000000..f24f6a9a
--- /dev/null
+++ b/.github/workflows/test-go-task.yml
@@ -0,0 +1,113 @@
+# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/test-go-task.md
+name: Test Go
+
+env:
+ # See: https://github.com/actions/setup-go/tree/v2#readme
+ GO_VERSION: "1.16"
+
+# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
+on:
+ create:
+ push:
+ paths:
+ - ".github/workflows/test-go-task.ya?ml"
+ - "codecov.ya?ml"
+ - "**/go.mod"
+ - "**/go.sum"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ - "**/testdata/**"
+ pull_request:
+ paths:
+ - ".github/workflows/test-go-task.ya?ml"
+ - "codecov.ya?ml"
+ - "**/go.mod"
+ - "**/go.sum"
+ - "Taskfile.ya?ml"
+ - "**.go"
+ - "**/testdata/**"
+ workflow_dispatch:
+ repository_dispatch:
+
+jobs:
+ run-determination:
+ runs-on: ubuntu-latest
+ outputs:
+ result: ${{ steps.determination.outputs.result }}
+ steps:
+ - name: Determine if the rest of the workflow should run
+ id: determination
+ run: |
+ RELEASE_BRANCH_REGEX="refs/heads/[0-9]+.[0-9]+.x"
+ # The `create` event trigger doesn't support `branches` filters, so it's necessary to use Bash instead.
+ if [[ \
+ "${{ github.event_name }}" != "create" || \
+ "${{ github.ref }}" =~ $RELEASE_BRANCH_REGEX \
+ ]]; then
+ # Run the other jobs.
+ RESULT="true"
+ else
+ # There is no need to run the other jobs.
+ RESULT="false"
+ fi
+
+ echo "::set-output name=result::$RESULT"
+
+ test:
+ name: test (${{ matrix.module.path }} - ${{ matrix.operating-system }})
+ needs: run-determination
+ if: needs.run-determination.outputs.result == 'true'
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ operating-system:
+ - ubuntu-latest
+ module:
+ - path: ./
+ codecov-flags: unit
+
+ runs-on: ${{ matrix.operating-system }}
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ env.GO_VERSION }}
+
+ - name: Install Arduino Lint
+ run: |
+ ARDUINO_LINT_INSTALLATION_PATH="${{ runner.temp }}/arduino-lint"
+ mkdir --parents "$ARDUINO_LINT_INSTALLATION_PATH"
+ curl \
+ -fsSL \
+ https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh \
+ | \
+ BINDIR="$ARDUINO_LINT_INSTALLATION_PATH" \
+ sh
+
+ # Add installation folder to path to path
+ echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
+
+ - name: Install Task
+ uses: arduino/setup-task@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ version: 3.x
+
+ - name: Run tests
+ env:
+ GO_MODULE_PATH: ${{ matrix.module.path }}
+ run: task go:test
+
+ - name: Send unit tests coverage to Codecov
+ if: runner.os == 'Linux'
+ uses: codecov/codecov-action@v2
+ with:
+ file: ${{ matrix.module.path }}coverage_unit.txt
+ flags: ${{ matrix.module.codecov-flags }}
+ fail_ci_if_error: ${{ github.repository == 'REPO_OWNER/REPO_NAME' }}
diff --git a/.github/workflows/test-go.yml b/.github/workflows/test-go.yml
deleted file mode 100644
index dfedb04b..00000000
--- a/.github/workflows/test-go.yml
+++ /dev/null
@@ -1,86 +0,0 @@
-name: Test Go
-
-# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
-on:
- push:
- paths:
- - ".github/workflows/test-go.yml"
- - "go.mod"
- - "go.sum"
- - "Taskfile.yml"
- - "**/testdata/**"
- - "**.go"
- pull_request:
- paths:
- - ".github/workflows/test-go.yml"
- - "go.mod"
- - "go.sum"
- - "Taskfile.yml"
- - "**/testdata/**"
- - "**.go"
- workflow_dispatch:
- repository_dispatch:
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Go
- uses: actions/setup-go@v2
- with:
- go-version: "1.14"
-
- - name: Install Taskfile
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Build application
- run: task go:build
-
- - name: Save binary as workflow artifact
- uses: actions/upload-artifact@v2
- with:
- if-no-files-found: error
- path: libraries-repository-engine
- name: libraries-repository-engine
-
- test:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Go
- uses: actions/setup-go@v2
- with:
- go-version: "1.14"
-
- - name: Install Arduino Lint
- run: |
- ARDUINO_LINT_INSTALLATION_PATH="${{ runner.temp }}/arduino-lint"
- mkdir --parents "$ARDUINO_LINT_INSTALLATION_PATH"
- curl \
- -fsSL \
- https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh \
- | \
- BINDIR="$ARDUINO_LINT_INSTALLATION_PATH" \
- sh
-
- # Add installation folder to path to path
- echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
-
- - name: Install Taskfile
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Run tests
- run: task go:test
diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml
deleted file mode 100644
index afd36447..00000000
--- a/.github/workflows/test-integration.yml
+++ /dev/null
@@ -1,70 +0,0 @@
-name: Test Integration
-
-# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
-on:
- push:
- paths:
- - ".github/workflows/test-integration.yml"
- - "Taskfile.yml"
- - "**.go"
- - "go.mod"
- - "go.sum"
- - "poetry.lock"
- - "pyproject.toml"
- - "test/**"
- pull_request:
- paths:
- - ".github/workflows/test-integration.yml"
- - "Taskfile.yml"
- - "**.go"
- - "go.mod"
- - "go.sum"
- - "poetry.lock"
- - "pyproject.toml"
- - "test/**"
- workflow_dispatch:
- repository_dispatch:
-
-jobs:
- test:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Install Go
- uses: actions/setup-go@v2
- with:
- go-version: "1.14"
-
- - name: Install Python
- uses: actions/setup-python@v2
- with:
- python-version: "3.9"
-
- - name: Install Poetry
- run: pip install poetry
-
- - name: Install Arduino Lint
- run: |
- ARDUINO_LINT_INSTALLATION_PATH="${{ runner.temp }}/arduino-lint"
- mkdir --parents "$ARDUINO_LINT_INSTALLATION_PATH"
- curl \
- -fsSL \
- https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh \
- | \
- BINDIR="$ARDUINO_LINT_INSTALLATION_PATH" \
- sh
-
- # Add installation folder to path to path
- echo "$ARDUINO_LINT_INSTALLATION_PATH" >> "$GITHUB_PATH"
-
- - name: Install Taskfile
- uses: arduino/setup-task@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- version: 3.x
-
- - name: Run integration tests
- run: task go:test-integration
diff --git a/.gitignore b/.gitignore
index 43f33c04..922b96cc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,7 +5,7 @@ libraries-repository-engine
libraries-repository-engine.exe
repository
repository.exe
-test/arduino/cc/repository/libraries/testdata/test_db.json
+tests/arduino/cc/repository/libraries/testdata/test_db.json
/config.json
/repos.txt
__pycache__/
diff --git a/.prettierignore b/.prettierignore
index fdbfccbf..3015d611 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -1,3 +1,3 @@
# See: https://prettier.io/docs/en/ignore.html#ignoring-files-prettierignore
-/test/testdata/test_all/golden/logs/
+/tests/testdata/test_sync/golden/logs/
diff --git a/README.md b/README.md
index dff3f714..1c60cbc8 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,9 @@
# libraries-repository-engine
-[](https://github.com/arduino/libraries-repository-engine/actions/workflows/test-go.yml)
-[](https://github.com/arduino/libraries-repository-engine/actions/workflows/test-integration.yml)
-[](https://github.com/arduino/libraries-repository-engine/actions/workflows/check-go.yml)
+[](https://github.com/arduino/libraries-repository-engine/actions/workflows/test-go-task.yml)
+[](https://codecov.io/gh/arduino/libraries-repository-engine)
+[](https://github.com/arduino/libraries-repository-engine/actions/workflows/test-go-integration-task.yml)
+[](https://github.com/arduino/libraries-repository-engine/actions/workflows/check-go-task.yml)
[](https://github.com/arduino/libraries-repository-engine/actions/workflows/check-prettier-formatting-task.yml)
[](https://github.com/arduino/libraries-repository-engine/actions/workflows/check-taskfiles.yml)
[](https://github.com/arduino/libraries-repository-engine/actions/workflows/spell-check-task.yml)
@@ -35,7 +36,11 @@ task go:test
Create a `config.json` file (or edit example one). Same thing for `repos.txt` file.
-Run with `go run sync_libraries.go` or `task go:build` and then `./libraries-repository-engine`
+Run the following command to list the available command line interfaces:
+
+```
+./libraries-repository-engine help
+```
## Security
diff --git a/Taskfile.yml b/Taskfile.yml
index 0c2b1a77..46575201 100644
--- a/Taskfile.yml
+++ b/Taskfile.yml
@@ -2,8 +2,12 @@
version: "3"
vars:
+ # Path of the project's primary Go module:
+ DEFAULT_GO_MODULE_PATH: ./
DEFAULT_GO_PACKAGES:
- sh: echo $(go list ./... | tr '\n' ' ')
+ sh: |
+ echo $(cd {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}} && go list ./... | tr '\n' ' ' || echo '"ERROR: Unable to discover Go packages"')
+ LDFLAGS:
tasks:
build:
@@ -28,22 +32,35 @@ tasks:
- task: go:format
- task: python:format
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/go-task/Taskfile.yml
go:build:
- desc: Build the project
+ desc: Build the Go code
+ dir: "{{.DEFAULT_GO_MODULE_PATH}}"
cmds:
- - go build -v -o libraries-repository-engine{{exeExt}}
+ - go build -v -o libraries-repository-engine{{exeExt}} {{.LDFLAGS}}
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-task/Taskfile.yml
go:test:
desc: Run unit tests
+ dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- - go test -v -short -run '{{default ".*" .GO_TEST_REGEX}}' {{default "-timeout 10m -coverpkg=./... -covermode=atomic" .GO_TEST_FLAGS}} -coverprofile=coverage_unit.txt {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
+ - |
+ go test \
+ -v \
+ -short \
+ -run '{{default ".*" .GO_TEST_REGEX}}' \
+ {{default "-timeout 10m -coverpkg=./... -covermode=atomic" .GO_TEST_FLAGS}} \
+ -coverprofile=coverage_unit.txt \
+ {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-integration-task/Taskfile.yml
go:test-integration:
desc: Run integration tests
- cmds:
+ deps:
- task: go:build
- - poetry install --no-root
- - poetry run pytest test
+ - task: poetry:install-deps
+ cmds:
+ - poetry run pytest tests
go:check:
desc: Check for problems with Go code
@@ -51,61 +68,82 @@ tasks:
- task: go:vet
- task: go:lint
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
go:vet:
desc: Check for errors in Go code
+ dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- go vet {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
go:fix:
desc: Modernize usages of outdated APIs
+ dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- go fix {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
go:lint:
desc: Lint Go code
+ dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- |
- PROJECT_PATH="$PWD"
- # `go get` and `go list` commands must be run from a temporary folder to avoid polluting go.mod
- cd "$(mktemp -d "${TMPDIR-${TMP-/tmp}}/task-temporary-XXXXX")"
- go get golang.org/x/lint/golint
- GOLINT_PATH="$(go list -f '{{"{{"}}.Target{{"}}"}}' golang.org/x/lint/golint || echo "false")"
- # `golint` must be run from the module folder
- cd "$PROJECT_PATH"
- "$GOLINT_PATH" \
+ if ! which golint &>/dev/null; then
+ echo "golint not installed or not in PATH. Please install: https://github.com/golang/lint#installation"
+ exit 1
+ fi
+ - |
+ golint \
{{default "-min_confidence 0.8 -set_exit_status" .GO_LINT_FLAGS}} \
{{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
go:format:
desc: Format Go code
+ dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- go fmt {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
+ poetry:install-deps:
+ desc: Install dependencies managed by Poetry
+ cmds:
+ - poetry install --no-root
+
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-python-task/Taskfile.yml
python:lint:
desc: Lint Python code
+ deps:
+ - task: poetry:install-deps
cmds:
- - poetry install --no-root
- poetry run flake8 --show-source
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-python-task/Taskfile.yml
python:format:
- desc: Automatically formats Python files
+ desc: Format Python files
+ deps:
+ - task: poetry:install-deps
cmds:
- - poetry install --no-root
- poetry run black .
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-prettier-formatting-task/Taskfile.yml
general:format-prettier:
desc: Format all supported files with Prettier
cmds:
- npx prettier --write .
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
general:check-spelling:
desc: Check for commonly misspelled words
+ deps:
+ - task: poetry:install-deps
cmds:
- - poetry install --no-root
- poetry run codespell
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
general:correct-spelling:
desc: Correct commonly misspelled words where possible
+ deps:
+ - task: poetry:install-deps
cmds:
- - poetry install --no-root
- poetry run codespell --write-changes
diff --git a/go.mod b/go.mod
index a1caecdf..f991dffe 100644
--- a/go.mod
+++ b/go.mod
@@ -1,13 +1,14 @@
-module arduino.cc/repository
+module github.com/arduino/libraries-repository-engine
-go 1.14
+go 1.16
require (
github.com/arduino/arduino-cli v0.0.0-20210520100059-2666b6ec51e9
- github.com/arduino/go-paths-helper v1.6.0
+ github.com/arduino/go-paths-helper v1.6.1
github.com/arduino/golang-concurrent-workers v0.0.0-20170202182617-6710cdc954bc
github.com/go-git/go-git/v5 v5.4.2
- github.com/google/go-cmp v0.5.2 // indirect
+ github.com/spf13/cobra v1.2.1
+ github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/vaughan0/go-ini v0.0.0-20130923145212-a98ad7ee00ec
go.bug.st/relaxed-semver v0.0.0-20190922224835-391e10178d18
diff --git a/go.sum b/go.sum
index dd24d8c3..52fb4123 100644
--- a/go.sum
+++ b/go.sum
@@ -1,6 +1,44 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
+cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
+cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
+cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
+cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
+cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
+cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
+cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=
+cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4=
+cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M=
+cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc=
+cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk=
+cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs=
+cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc=
+cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY=
+cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI=
+cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk=
+cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg=
+cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8=
+cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0=
+cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
+cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
+cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
+cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg=
+cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc=
+cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ=
+cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
+cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk=
+cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=
+cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=
+cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw=
+cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA=
+cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU=
+cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=
+cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos=
+cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
+cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
+cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
+dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
+github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/GeertJohan/go.incremental v1.0.0/go.mod h1:6fAjUhbVuX1KcMD3c8TEgVUqmo4seqhv0i0kdATSkM0=
github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
github.com/Microsoft/go-winio v0.4.16 h1:FtSW/jqD+l4ba5iPBj9CODVtgfYAD8w2wS923g/cFDk=
@@ -16,14 +54,15 @@ github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuy
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
+github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
github.com/arduino/arduino-cli v0.0.0-20210520100059-2666b6ec51e9 h1:UpPNtwrPcpGze+JAuNMx2edBmel7A0jPcZdMuUcyYdY=
github.com/arduino/arduino-cli v0.0.0-20210520100059-2666b6ec51e9/go.mod h1:HNbHWr7qq+9M2rhzBUJIBIpCMRlB6+mptNDLMDZNlG0=
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c/go.mod h1:HK7SpkEax/3P+0w78iRQx1sz1vCDYYw9RXwHjQTB5i8=
github.com/arduino/go-paths-helper v1.0.1/go.mod h1:HpxtKph+g238EJHq4geEPv9p+gl3v5YYu35Yb+w31Ck=
github.com/arduino/go-paths-helper v1.2.0/go.mod h1:HpxtKph+g238EJHq4geEPv9p+gl3v5YYu35Yb+w31Ck=
github.com/arduino/go-paths-helper v1.5.0/go.mod h1:V82BWgAAp4IbmlybxQdk9Bpkz8M4Qyx+RAFKaG9NuvU=
-github.com/arduino/go-paths-helper v1.6.0 h1:S7/d7DqB9XlnvF9KrgSiGmo2oWKmYW6O/DTjj3Bijx4=
-github.com/arduino/go-paths-helper v1.6.0/go.mod h1:V82BWgAAp4IbmlybxQdk9Bpkz8M4Qyx+RAFKaG9NuvU=
+github.com/arduino/go-paths-helper v1.6.1 h1:lha+/BuuBsx0qTZ3gy6IO1kU23lObWdQ/UItkzVWQ+0=
+github.com/arduino/go-paths-helper v1.6.1/go.mod h1:V82BWgAAp4IbmlybxQdk9Bpkz8M4Qyx+RAFKaG9NuvU=
github.com/arduino/go-properties-orderedmap v1.3.0 h1:4No/vQopB36e7WUIk6H6TxiSEJPiMrVOCZylYmua39o=
github.com/arduino/go-properties-orderedmap v1.3.0/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk=
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b/go.mod h1:uwGy5PpN4lqW97FiLnbcx+xx8jly5YuPMJWfVwwjJiQ=
@@ -31,23 +70,36 @@ github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b h1:3PjgYG5g
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b/go.mod h1:iIPnclBMYm1g32Q5kXoqng4jLhMStReIP7ZxaoUC2y8=
github.com/arduino/golang-concurrent-workers v0.0.0-20170202182617-6710cdc954bc h1:PzGY1Ppud/Ng+LFHU16oOrWhYsnSLYurwiHlbVc/FJ0=
github.com/arduino/golang-concurrent-workers v0.0.0-20170202182617-6710cdc954bc/go.mod h1:E+WBbLkFBdPp+N+yijgbdDI33mr5pm6j42RYLN5K4do=
+github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
+github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=
+github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
+github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
+github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
+github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
+github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
+github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
github.com/cmaglie/go.rice v1.0.3/go.mod h1:AF3bOWkvdOpp8/S3UL8qbQ4N7DiISIbJtj54GWFPAsc=
github.com/cmaglie/pb v1.0.27/go.mod h1:GilkKZMXYjBA4NxItWFfO+lwkp59PLHQ+IOW/b/kmZI=
+github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
+github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
+github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
github.com/codeclysm/cc v1.2.2/go.mod h1:XtW4ArCNgQwFphcRGG9+sPX5WM1J6/u0gMy5ZdV3obA=
github.com/codeclysm/extract/v3 v3.0.2 h1:sB4LcE3Php7LkhZwN0n2p8GCwZe92PEQutdbGURf5xc=
github.com/codeclysm/extract/v3 v3.0.2/go.mod h1:NKsw+hqua9H+Rlwy/w/3Qgt9jDonYEgB6wJu+25eOKw=
github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
+github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
+github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=
github.com/creack/goselect v0.1.1/go.mod h1:a/NhLweNvqIYMuxcMOuWY516Cimucms3DglDzQP3hKY=
@@ -61,15 +113,20 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
github.com/emirpasic/gods v1.12.0 h1:QAUIPSaCu4G+POclxeqb3F+WPpdKqFGlw36+yOzGlrg=
github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o=
+github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
+github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
+github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po=
+github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
+github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2/go.mod h1:c7sGIpDbBo0JZZ1tKyC1p5smWf8QcUjK4bFtZjHAecg=
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5/go.mod h1:BEUDl7FG1cc76sM0J0x8dqr6RhiL4uqvk6oFkwuNyuM=
-github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
-github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
+github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
+github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/gliderlabs/ssh v0.2.2 h1:6zsha5zo/TWhRhwqCD3+EarCAgZ2yN28ipRnGPnwkI0=
github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0=
@@ -82,47 +139,114 @@ github.com/go-git/go-git-fixtures/v4 v4.2.1 h1:n9gGL1Ct/yIw+nfsfr8s4+sbhT+Ncu2Su
github.com/go-git/go-git-fixtures/v4 v4.2.1/go.mod h1:K8zd3kDUAykwTdDCr+I0per6Y6vMiRR/nnVTBtavnB0=
github.com/go-git/go-git/v5 v5.4.2 h1:BXyZu9t0VkbiHtqrsvdq39UDhGJTl1h55VW6CSC4aY4=
github.com/go-git/go-git/v5 v5.4.2/go.mod h1:gQ1kArt6d+n+BGd+/B/I74HwRTLhth2+zti4ihgckDc=
+github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
+github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
+github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
+github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=
-github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=
+github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
+github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
+github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
+github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
+github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
+github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
+github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
+github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
+github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw=
+github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4=
+github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8=
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
+github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
+github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
+github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk=
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
-github.com/golang/protobuf v1.4.2 h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
+github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
+github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
+github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM=
+github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
+github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
+github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
+github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.2 h1:X2ev0eStA3AbceY54o37/0PQ/UWqKEiiO2dKL5OPaFM=
+github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=
+github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
+github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
+github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
+github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
+github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
+github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
+github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0=
+github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0=
+github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
+github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
+github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
+github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
+github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
+github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
+github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
+github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
+github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
+github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
+github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
+github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
+github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
+github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
+github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=
github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=
+github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
github.com/h2non/filetype v1.0.6/go.mod h1:isekKqOuhMj+s/7r3rIeTErIRy4Rub5uBWHfvMusLMU=
github.com/h2non/filetype v1.0.8 h1:le8gpf+FQA0/DlDABbtisA1KiTS0Xi+YSC/E8yY3Y14=
github.com/h2non/filetype v1.0.8/go.mod h1:isekKqOuhMj+s/7r3rIeTErIRy4Rub5uBWHfvMusLMU=
+github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q=
+github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=
+github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
+github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=
+github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=
+github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM=
+github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=
+github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=
+github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU=
+github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=
+github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
+github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
+github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=
+github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
+github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
+github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=
+github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=
+github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=
+github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=
+github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
+github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
github.com/imdario/mergo v0.3.12 h1:b6R2BslTbIEToALKP7LxUvijTsNI9TAe80pLWN2g/HU=
github.com/imdario/mergo v0.3.12/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA=
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
@@ -132,7 +256,9 @@ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i
github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
github.com/jessevdk/go-flags v1.5.0/go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4=
github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=
-github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=
+github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
+github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
+github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk=
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
github.com/juju/clock v0.0.0-20180524022203-d293bb356ca4/go.mod h1:nD0vlnrUjcjJhqN5WuCWZyzfd5AHZAC9/ajvbSx69xA=
github.com/juju/errors v0.0.0-20150916125642-1b5e39b83d18/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q=
@@ -151,9 +277,11 @@ github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 h1:DowS9hvgyYSX4TO5NpyC606/Z4SxnNYbT+WX27or6Ck=
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
+github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk=
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
+github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
@@ -165,12 +293,15 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/leonelquinteros/gotext v1.4.0/go.mod h1:yZGXREmoGTtBvZHNcc+Yfug49G/2spuF/i/Qlsvz1Us=
github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
-github.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=
github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
+github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls=
+github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
github.com/marcinbor85/gohex v0.0.0-20210308104911-55fb1c624d84/go.mod h1:Pb6XcsXyropB9LNHhnqaknG/vEwYztLkQzVCHv8sQ3M=
github.com/matryer/is v1.2.0 h1:92UTHpy8CDwaJ08GqLDzhhuixiBUUD1p3AU6PHddz4A=
github.com/matryer/is v1.2.0/go.mod h1:2fLPjFQM9rhQ15aVEtbuwhJinnOqrmgXPNdZsdwlWXA=
+github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
+github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=
github.com/mattn/go-isatty v0.0.8 h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=
github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
@@ -179,26 +310,41 @@ github.com/mdlayher/genetlink v0.0.0-20190313224034-60417448a851/go.mod h1:EsbsA
github.com/mdlayher/netlink v0.0.0-20190313131330-258ea9dff42c/go.mod h1:eQB3mZE4aiYnlUsyGGCOpPETfdQq4Jhsgf1fk3cwQaA=
github.com/mdlayher/taskstats v0.0.0-20190313225729-7cbba52ee072/go.mod h1:sGdS7A6CAETR53zkdjGkgoFlh1vSm7MtX+i8XfEsTMA=
github.com/miekg/dns v1.0.5/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
+github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
+github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
+github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
-github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=
+github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=
+github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=
+github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=
+github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
+github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag=
+github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
+github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
+github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
+github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/nkovacs/streamquote v1.0.0/go.mod h1:BN+NaZ2CmdKqUuTUXUEm9j95B2TRbpOWpxbJYzzgUsc=
github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=
github.com/oleksandr/bonjour v0.0.0-20160508152359-5dcf00d8b228/go.mod h1:MGuVJ1+5TX1SCoO2Sx0eAnjpdRytYla2uC1YIZfkC9c=
+github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
github.com/pelletier/go-buffruneio v0.2.0/go.mod h1:JkE26KsDizTr40EUHkXVtNPvgGtbSNq5BcowyYOWdKo=
-github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
+github.com/pelletier/go-toml v1.9.3 h1:zeC5b1GviRUyKYd6OJPvBU/mcVDVoL1OhT17FCt5dSQ=
+github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/pmylund/sortutil v0.0.0-20120526081524-abeda66eb583 h1:ogHi8YLNeIxABOaH6UgtbwkODheuAK+ErP8gWXYQVj0=
github.com/pmylund/sortutil v0.0.0-20120526081524-abeda66eb583/go.mod h1:sFPiU/UgDcsQVu3vkqpZLCXWFwUoQRpHGu9ATihPAl0=
+github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
@@ -211,8 +357,12 @@ github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7z
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5/go.mod h1:GEXHk5HgEKCvEIIrSpFI3ozzG5xOKA2DVlEX/gGnewM=
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
+github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
+github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
+github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
github.com/schollz/closestmatch v2.1.0+incompatible/go.mod h1:RtP1ddjLong6gTkbtmuhtR2uUrrJOpYzYRvbcPAid+g=
+github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
github.com/segmentio/fasthash v0.0.0-20180216231524-a72b379d632e/go.mod h1:tm/wZFQ8e24NYaBGIlnO2WGCAi67re4HHuOm0sftE/M=
github.com/segmentio/objconv v1.0.1/go.mod h1:auayaH5k3137Cl4SoXTgrzQcuQDmvuVtZgS0fb1Ahys=
github.com/segmentio/stats/v4 v4.5.3/go.mod h1:LsaahUJR7iiSs8mnkvQvdQ/RLHAS5adGLxuntg0ydGo=
@@ -224,25 +374,29 @@ github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPx
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4=
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
-github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
-github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=
github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=
github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
-github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
-github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=
+github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY=
+github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I=
github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
-github.com/spf13/cobra v1.0.1-0.20200710201246-675ae5f5a98c h1:/dP/1GnfVIlWnB0YDImenSmneUCw3wjyq2RMgAG1e2o=
+github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=
+github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
github.com/spf13/cobra v1.0.1-0.20200710201246-675ae5f5a98c/go.mod h1:aeNIJzz/GSSVlS+gpCpQWZ83BKbsoW57mr90+YthtkQ=
-github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=
+github.com/spf13/cobra v1.2.1 h1:+KmjbUw1hriSNMF55oPrkZcb27aECyrj8V2ytv7kWDw=
+github.com/spf13/cobra v1.2.1/go.mod h1:ExllRjgxM/piMAM+3tAZvg8fsklGAf3tPfi+i8t68Nk=
github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
-github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
+github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=
+github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo=
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
+github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
+github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE=
-github.com/spf13/viper v1.6.2 h1:7aKfF+e8/k68gda3LOjo5RxiUqddoFxVq4BKBPrxk5E=
github.com/spf13/viper v1.6.2/go.mod h1:t3iDnF5Jlj76alVNuyFBk5oUMCvsrkbvZK0WQdfDi5k=
+github.com/spf13/viper v1.8.1 h1:Kq1fyeebqsBfbjZj4EL7gj2IO0mMaiyjYUWcUsl2O44=
+github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns=
github.com/src-d/gcfg v1.4.0/go.mod h1:p/UMsR43ujA89BJY9duynAwIpvqEujIH/jFlfL7jWoI=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
@@ -250,6 +404,7 @@ github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoH
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
+github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
@@ -266,6 +421,11 @@ github.com/xanzy/ssh-agent v0.3.0 h1:wUMzuKtKilRgBAD1sUb8gOwwRr2FGoBVumcjoOACClI
github.com/xanzy/ssh-agent v0.3.0/go.mod h1:3s9xbODqPuuhK9JV1R321M/FlMZSBvE5aY6eAcqrDh0=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
+github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
go.bug.st/cleanup v1.0.0 h1:XVj1HZxkBXeq3gMT7ijWUpHyIC1j8XAoNSyQ06CskgA=
go.bug.st/cleanup v1.0.0/go.mod h1:EqVmTg2IBk4znLbPD28xne3abjsJftMdqqJEjhn70bk=
go.bug.st/downloader/v2 v2.1.1 h1:nyqbUizo3E2IxCCm4YFac4FtSqqFpqWP+Aae5GCMuw4=
@@ -275,45 +435,142 @@ go.bug.st/relaxed-semver v0.0.0-20190922224835-391e10178d18/go.mod h1:Cx1VqMtEhE
go.bug.st/serial v1.1.2/go.mod h1:VmYBeyJWp5BnJ0tw2NUJHZdJTGl2ecBGABHlzRK1knY=
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45/go.mod h1:dRSl/CVCTf56CkXgJMDOdSwNfo2g1orOGE/gBGdvjZw=
go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
+go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs=
+go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
+go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ=
+go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
+go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
+go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
+go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
+go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
+go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
+go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
+go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
+go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
+go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo=
golang.org/x/crypto v0.0.0-20180214000028-650f4a345ab4/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
+golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/crypto v0.0.0-20190219172222-a4c6cb3142f2/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
+golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
+golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
+golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20200406173513-056763e48d71/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
+golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b h1:7mWr3k41Qtv8XlltBkDkl8LoP3mpSgBW8BUoxtEdbXg=
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
+golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
+golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
+golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=
+golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=
+golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
+golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
+golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
+golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=
+golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
+golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
+golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
+golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
+golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
+golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
+golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
+golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs=
+golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
+golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
+golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
+golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
+golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=
+golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=
+golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=
+golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=
+golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
+golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
+golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
+golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
+golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
+golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
+golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/net v0.0.0-20180406214816-61147c48b25b/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190313220215-9f648a60d977/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
+golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
+golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
+golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
+golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
+golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
+golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
+golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
+golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
+golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
+golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
+golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
+golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
+golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
-golang.org/x/net v0.0.0-20210326060303-6b1517762897 h1:KrsHThm5nFk34YtATK1LsThyGhGbGe1olrte/HInHvs=
+golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
golang.org/x/net v0.0.0-20210326060303-6b1517762897/go.mod h1:uSPa2vr4CLtc/ILN5odXGNXS6mhrKVzTaCXzk9m6W3k=
+golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 h1:4nGaVu0QrbjT/AK2PRLuQfQuh6DJve+pELhqTdAj3x0=
+golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
+golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
+golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
+golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
+golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
+golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -322,45 +579,210 @@ golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5h
golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210502180810-71e4cd670f79 h1:RX8C8PRZc2hTIod4ds8ij+/4RQX3AqhYj3uOHmyaz4E=
+golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210502180810-71e4cd670f79/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210510120138-977fb7262007 h1:gG67DSER+11cZvqIMb8S8bt0vZtiN6xWYARwirrOSfE=
+golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
+golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
-golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/text v0.3.5 h1:i6eZZ+zk0SOf0xgBpEpPD18qWcJda6q1sxt3S0kzyUQ=
+golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
+golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
+golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
+golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
+golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
+golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
+golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
+golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
+golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/tools v0.0.0-20190729092621-ff9f1409240a/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI=
-golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
+golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
+golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
+golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
+golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8=
+golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
+golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
+golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
+golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE=
+golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0=
+golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
+golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
+golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
+google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
+google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
+google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
+google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
+google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
+google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
+google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
+google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
+google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
+google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
+google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE=
+google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
+google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE=
+google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM=
+google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc=
+google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg=
+google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE=
+google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8=
+google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU=
+google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94=
+google.golang.org/api v0.44.0/go.mod h1:EBOGZqzyhtvMDoxwS97ctnh0zUmYY6CxqXsc1AvkYD8=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
+google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
+google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=
+google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
+google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
+google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
+google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
+google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
+google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
+google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
+google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
-google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=
+google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=
+google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
+google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
+google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
+google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
+google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
+google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=
+google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA=
+google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
+google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
+google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA=
+google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A=
+google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c h1:wtujag7C+4D6KMoulW9YauvK2lgdvCMS260jsqqBXr0=
+google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
+google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
+google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
-google.golang.org/grpc v1.27.0 h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=
+google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
+google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
+google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
+google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60=
+google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
+google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
+google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
+google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
+google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=
+google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
+google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8=
+google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
+google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
+google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
+google.golang.org/grpc v1.38.0 h1:/9BgsAsa5nWe26HqOlvlgJnqBuktYOLCgjCPqsa56W0=
+google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
@@ -369,8 +791,11 @@ google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzi
google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
-google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c=
+google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
+google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
+google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk=
+google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20160105164936-4f90aeace3a2/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
@@ -379,8 +804,10 @@ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
-gopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno=
+gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
+gopkg.in/ini.v1 v1.62.0 h1:duBzk771uxoUuOlyRLkHsygud9+5lrlGjdFBb4mSKDU=
+gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
gopkg.in/mgo.v2 v2.0.0-20160818015218-f2b6f6c918c4/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA=
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce h1:xcEWjVhvbDy+nHP67nPDDpbYrY+ILlfndk4bRioVHaU=
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA=
@@ -394,10 +821,22 @@ gopkg.in/yaml.v2 v2.0.0-20170712054546-1be3d31502d6/go.mod h1:JAlM8MvJe8wmxCU4Bl
gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
+gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
+gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
+gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
+gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
+gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
+honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
+honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
+honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
+honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
+honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
+rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
+rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
+rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
diff --git a/internal/backup/backup.go b/internal/backup/backup.go
new file mode 100644
index 00000000..fb759196
--- /dev/null
+++ b/internal/backup/backup.go
@@ -0,0 +1,107 @@
+// This file is part of libraries-repository-engine.
+//
+// Copyright 2021 ARDUINO SA (http://www.arduino.cc/)
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as published
+// by the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see Click to expand Arduino Lint report
+
+%s
+
+
\n" + buffer.String() + "\n" + if err := ioutil.WriteFile(logFile, []byte(output), 0644); err != nil { + return fmt.Errorf("write log to file: %s", err.Error()) + } + return nil +} diff --git a/internal/configuration/configuration.go b/internal/configuration/configuration.go new file mode 100644 index 00000000..806c42f9 --- /dev/null +++ b/internal/configuration/configuration.go @@ -0,0 +1,70 @@ +// This file is part of libraries-repository-engine. +// +// Copyright 2021 ARDUINO SA (http://www.arduino.cc/) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published +// by the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see
\n" + buffer.String() + "\n" - if err := ioutil.WriteFile(logFile, []byte(output), 0644); err != nil { - return fmt.Errorf("write log to file: %s", err.Error()) - } - return nil } diff --git a/test/testdata/test_all/golden/db.json b/test/testdata/test_all/golden/db.json deleted file mode 100644 index 6372ca86..00000000 --- a/test/testdata/test_all/golden/db.json +++ /dev/null @@ -1,488 +0,0 @@ -{ - "Libraries": [ - { - "Name": "SpacebrewYun", - "Repository": "https://github.com/arduino-libraries/SpacebrewYun.git", - "SupportLevel": "", - "LatestCategory": "Communication" - }, - { - "Name": "ArduinoCloudThing", - "Repository": "https://github.com/arduino-libraries/ArduinoCloudThing.git", - "SupportLevel": "", - "LatestCategory": "Communication" - } - ], - "Releases": [ - { - "LibraryName": "SpacebrewYun", - "Version": "1.0.0", - "Author": "Julio Terra", - "Maintainer": "Julio Terra \u003cjulioterra@gmail.com\u003e", - "License": "", - "Sentence": "Enables the communication between interactive objects using WebSockets. For Arduino Yún only.", - "Paragraph": "This library was developed to enable you to easily connect the Arduino Yún to Spacebrew. To learn more about Spacebrew visit Spacebrew.cc", - "Website": "https://github.com/julioterra/yunSpacebrew", - "Category": "Communication", - "Architectures": ["avr"], - "Types": ["Contributed"], - "URL": "${base_download_url}github.com/arduino-libraries/SpacebrewYun-1.0.0.zip", - "ArchiveFileName": "SpacebrewYun-1.0.0.zip", - "Size": 6245, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nRule LD002 result: fail\nWARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 2\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.1.0", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloud", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.1.0.zip", - "ArchiveFileName": "ArduinoCloudThing-1.1.0.zip", - "Size": 105318, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nFinished linting projects. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "SpacebrewYun", - "Version": "1.0.1", - "Author": "Julio Terra", - "Maintainer": "Julio Terra \u003cjulioterra@gmail.com\u003e", - "License": "", - "Sentence": "Enables the communication between interactive objects using WebSockets. For Arduino Yún only.", - "Paragraph": "This library was developed to enable you to easily connect the Arduino Yún to Spacebrew. To learn more about Spacebrew visit Spacebrew.cc", - "Website": "https://github.com/julioterra/yunSpacebrew", - "Category": "Communication", - "Architectures": ["avr"], - "Types": ["Contributed"], - "URL": "${base_download_url}github.com/arduino-libraries/SpacebrewYun-1.0.1.zip", - "ArchiveFileName": "SpacebrewYun-1.0.1.zip", - "Size": 12604, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nRule LD002 result: fail\nWARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n\nFinished linting project. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nFinished linting projects. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "SpacebrewYun", - "Version": "1.0.2", - "Author": "Julio Terra", - "Maintainer": "Julio Terra \u003cjulioterra@gmail.com\u003e", - "License": "", - "Sentence": "Enables the communication between interactive objects using WebSockets. For Arduino Yún only.", - "Paragraph": "This library was developed to enable you to easily connect the Arduino Yún to Spacebrew. To learn more about Spacebrew visit Spacebrew.cc", - "Website": "https://github.com/julioterra/yunSpacebrew", - "Category": "Communication", - "Architectures": ["avr"], - "Types": ["Contributed"], - "URL": "${base_download_url}github.com/arduino-libraries/SpacebrewYun-1.0.2.zip", - "ArchiveFileName": "SpacebrewYun-1.0.2.zip", - "Size": 12606, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [ - { - "Name": "Bridge", - "Version": "" - } - ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nRule LD002 result: fail\nWARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n\nFinished linting project. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nFinished linting projects. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.3.1", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.3.1.zip", - "ArchiveFileName": "ArduinoCloudThing-1.3.1.zip", - "Size": 222190, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.4.0", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.4.0.zip", - "ArchiveFileName": "ArduinoCloudThing-1.4.0.zip", - "Size": 222064, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.4.1", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.4.1.zip", - "ArchiveFileName": "ArduinoCloudThing-1.4.1.zip", - "Size": 221686, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.5.0", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.5.0.zip", - "ArchiveFileName": "ArduinoCloudThing-1.5.0.zip", - "Size": 234576, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.5.1", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.5.1.zip", - "ArchiveFileName": "ArduinoCloudThing-1.5.1.zip", - "Size": 235029, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.5.2", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.5.2.zip", - "ArchiveFileName": "ArduinoCloudThing-1.5.2.zip", - "Size": 235026, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.5.3", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.5.3.zip", - "ArchiveFileName": "ArduinoCloudThing-1.5.3.zip", - "Size": 235034, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.5.4", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.5.4.zip", - "ArchiveFileName": "ArduinoCloudThing-1.5.4.zip", - "Size": 236072, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.6.0", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.6.0.zip", - "ArchiveFileName": "ArduinoCloudThing-1.6.0.zip", - "Size": 244091, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.6.1", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.6.1.zip", - "ArchiveFileName": "ArduinoCloudThing-1.6.1.zip", - "Size": 244762, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.6.2", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.6.2.zip", - "ArchiveFileName": "ArduinoCloudThing-1.6.2.zip", - "Size": 244928, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.6.3", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.6.3.zip", - "ArchiveFileName": "ArduinoCloudThing-1.6.3.zip", - "Size": 242430, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.6.4", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.6.4.zip", - "ArchiveFileName": "ArduinoCloudThing-1.6.4.zip", - "Size": 244979, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.6.5", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.6.5.zip", - "ArchiveFileName": "ArduinoCloudThing-1.6.5.zip", - "Size": 244990, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [ - { - "Name": "RTCZero", - "Version": "" - } - ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.7.0", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.7.0.zip", - "ArchiveFileName": "ArduinoCloudThing-1.7.0.zip", - "Size": 246815, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [ - { - "Name": "RTCZero", - "Version": "" - } - ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.7.1", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.7.1.zip", - "ArchiveFileName": "ArduinoCloudThing-1.7.1.zip", - "Size": 246817, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [ - { - "Name": "RTCZero", - "Version": "" - } - ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.7.2", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.7.2.zip", - "ArchiveFileName": "ArduinoCloudThing-1.7.2.zip", - "Size": 246968, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [ - { - "Name": "RTCZero", - "Version": "" - } - ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - }, - { - "LibraryName": "ArduinoCloudThing", - "Version": "1.7.3", - "Author": "Arduino", - "Maintainer": "Arduino \u003cinfo@arduino.cc\u003e", - "License": "", - "Sentence": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Paragraph": "Easly connect your Arduino/Genuino board to the Arduino Cloud", - "Website": "https://github.com/arduino-libraries/ArduinoCloudThing", - "Category": "Communication", - "Architectures": ["*"], - "Types": ["Arduino", "Retired"], - "URL": "${base_download_url}github.com/arduino-libraries/ArduinoCloudThing-1.7.3.zip", - "ArchiveFileName": "ArduinoCloudThing-1.7.3.zip", - "Size": 246899, - "Checksum": "${checksum_placeholder}", - "Includes": [], - "Dependencies": [ - { - "Name": "RTCZero", - "Version": "" - } - ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" - } - ] -} diff --git a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html b/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html deleted file mode 100644 index 13889d5c..00000000 --- a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html +++ /dev/null @@ -1,722 +0,0 @@ -
-2021/05/23 19:15:57 Scraping https://github.com/arduino-libraries/ArduinoCloudThing.git -2021/05/23 19:15:59 Checking out tag: 1.1.0 -2021/05/23 19:16:00 Arduino Lint has suggestions for possible improvements: -\ No newline at end of file diff --git a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html b/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html deleted file mode 100644 index d5effd34..00000000 --- a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html +++ /dev/null @@ -1,741 +0,0 @@ --2021/05/23 19:16:00 Checking out tag: 1.2.0 -2021/05/23 19:16:00 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -
--2021/05/23 19:16:00 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 19:16:00 Checking out tag: 1.2.1 -2021/05/23 19:16:01 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -
--2021/05/23 19:16:01 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 19:16:01 Checking out tag: 1.2.2 -2021/05/23 19:16:02 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:02 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 19:16:02 Checking out tag: 1.2.3 -2021/05/23 19:16:02 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:02 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 19:16:02 Checking out tag: 1.2.4 -2021/05/23 19:16:03 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:03 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 19:16:03 Checking out tag: 1.3.0 -2021/05/23 19:16:04 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:04 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 19:16:04 Checking out tag: 1.3.1 -2021/05/23 19:16:04 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:04 Checking out tag: 1.4.0 -2021/05/23 19:16:05 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:05 Checking out tag: 1.4.1 -2021/05/23 19:16:06 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:06 Checking out tag: 1.5.0 -2021/05/23 19:16:06 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:06 Checking out tag: 1.5.1 -2021/05/23 19:16:07 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:07 Checking out tag: 1.5.2 -2021/05/23 19:16:08 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:08 Checking out tag: 1.5.3 -2021/05/23 19:16:08 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:08 Checking out tag: 1.5.4 -2021/05/23 19:16:09 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:09 Checking out tag: 1.6.0 -2021/05/23 19:16:10 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:10 Checking out tag: 1.6.1 -2021/05/23 19:16:10 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:10 Checking out tag: 1.6.2 -2021/05/23 19:16:11 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:11 Checking out tag: 1.6.3 -2021/05/23 19:16:12 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:12 Checking out tag: 1.6.4 -2021/05/23 19:16:12 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:13 Checking out tag: 1.6.5 -2021/05/23 19:16:13 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:13 Checking out tag: 1.7.0 -2021/05/23 19:16:14 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:14 Checking out tag: 1.7.1 -2021/05/23 19:16:14 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:15 Checking out tag: 1.7.2 -2021/05/23 19:16:15 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 19:16:15 Checking out tag: 1.7.3 -2021/05/23 19:16:16 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
-- -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
-
-2021/05/23 23:27:45 Scraping https://github.com/arduino-libraries/ArduinoCloudThing.git -2021/05/23 23:27:45 Checking out tag: 1.1.0 -2021/05/23 23:27:48 Release ArduinoCloudThing:1.1.0 already loaded, skipping -2021/05/23 23:27:48 Arduino Lint has suggestions for possible improvements: -\ No newline at end of file diff --git a/test/__init__.py b/tests/__init__.py similarity index 100% rename from test/__init__.py rename to tests/__init__.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 00000000..aa51db25 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,127 @@ +# Source: +# https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-integration/test_all.py +# Copyright 2021 ARDUINO SA (http://www.arduino.cc/) +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see-2021/05/23 23:27:48 Checking out tag: 1.2.0 -2021/05/23 23:27:49 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -
--2021/05/23 23:27:49 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 23:27:49 Checking out tag: 1.2.1 -2021/05/23 23:27:49 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun - -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true - -------------------- - -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -
--2021/05/23 23:27:49 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 23:27:49 Checking out tag: 1.2.2 -2021/05/23 23:27:50 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:50 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 23:27:50 Checking out tag: 1.2.3 -2021/05/23 23:27:50 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:50 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 23:27:50 Checking out tag: 1.2.4 -2021/05/23 23:27:51 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:51 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 23:27:51 Checking out tag: 1.3.0 -2021/05/23 23:27:51 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:51 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 -2021/05/23 23:27:51 Checking out tag: 1.3.1 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.3.1 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.4.0 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.4.0 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.4.1 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.4.1 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.5.0 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.0 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.5.1 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.1 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.5.2 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.2 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.5.3 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.3 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.5.4 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.4 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.6.0 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.0 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.6.1 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.1 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.6.2 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.2 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.6.3 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.3 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.6.4 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.4 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.6.5 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.5 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.7.0 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.0 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.7.1 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.1 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.7.2 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.2 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
--2021/05/23 23:27:52 Checking out tag: 1.7.3 -2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.3 already loaded, skipping -2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
-- -Click to expand Arduino Lint report
-
-Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true - -------------------- - - -
-
+2021/05/23 19:15:57 Scraping https://github.com/arduino-libraries/ArduinoCloudThing.git +2021/05/23 19:15:59 Checking out tag: 1.1.0 +2021/05/23 19:16:00 Arduino Lint has suggestions for possible improvements: +\ No newline at end of file diff --git a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html b/tests/testdata/test_sync/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html similarity index 55% rename from test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html rename to tests/testdata/test_sync/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html index 4e8c0682..4cc26470 100644 --- a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html +++ b/tests/testdata/test_sync/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html @@ -5,15 +5,13 @@+2021/08/10 00:40:51 Checking out tag: 1.2.0 +2021/08/10 00:40:52 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun + +Linter results for project: no errors or warnings + +------------------- + +Linter results for projects: 0 ERRORS, 4 WARNINGS + +
++2021/05/23 19:16:00 Error syncing library: exit status 1 +2021/05/23 19:16:00 Checking out tag: 1.2.1 +2021/05/23 19:16:01 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) + +Linter results for project: 1 ERRORS, 4 WARNINGS + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun + +Linter results for project: no errors or warnings + +------------------- + +Linter results for projects: 1 ERRORS, 4 WARNINGS + +
++2021/05/23 19:16:01 Error syncing library: exit status 1 +2021/05/23 19:16:01 Checking out tag: 1.2.2 +2021/05/23 19:16:02 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:02 Error syncing library: exit status 1 +2021/05/23 19:16:02 Checking out tag: 1.2.3 +2021/05/23 19:16:02 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:02 Error syncing library: exit status 1 +2021/05/23 19:16:02 Checking out tag: 1.2.4 +2021/05/23 19:16:03 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:03 Error syncing library: exit status 1 +2021/05/23 19:16:03 Checking out tag: 1.3.0 +2021/05/23 19:16:04 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:04 Error syncing library: exit status 1 +2021/05/23 19:16:04 Checking out tag: 1.3.1 +2021/05/23 19:16:04 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:04 Checking out tag: 1.4.0 +2021/05/23 19:16:05 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:05 Checking out tag: 1.4.1 +2021/05/23 19:16:06 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:06 Checking out tag: 1.5.0 +2021/05/23 19:16:06 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:06 Checking out tag: 1.5.1 +2021/05/23 19:16:07 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:07 Checking out tag: 1.5.2 +2021/05/23 19:16:08 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:08 Checking out tag: 1.5.3 +2021/05/23 19:16:08 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:08 Checking out tag: 1.5.4 +2021/05/23 19:16:09 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:09 Checking out tag: 1.6.0 +2021/05/23 19:16:10 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:10 Checking out tag: 1.6.1 +2021/05/23 19:16:10 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:10 Checking out tag: 1.6.2 +2021/05/23 19:16:11 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:11 Checking out tag: 1.6.3 +2021/05/23 19:16:12 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 19:16:12 Checking out tag: 1.6.4 +2021/05/23 19:16:12 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 19:16:13 Checking out tag: 1.6.5 +2021/05/23 19:16:13 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 19:16:13 Checking out tag: 1.7.0 +2021/05/23 19:16:14 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 19:16:14 Checking out tag: 1.7.1 +2021/05/23 19:16:14 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 19:16:15 Checking out tag: 1.7.2 +2021/05/23 19:16:15 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 19:16:15 Checking out tag: 1.7.3 +2021/05/23 19:16:16 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++ +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
+
+2021/05/23 23:27:45 Scraping https://github.com/arduino-libraries/ArduinoCloudThing.git +2021/05/23 23:27:45 Checking out tag: 1.1.0 +2021/05/23 23:27:48 Release ArduinoCloudThing:1.1.0 already loaded, skipping +2021/05/23 23:27:48 Arduino Lint has suggestions for possible improvements: +\ No newline at end of file diff --git a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html b/tests/testdata/test_sync/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html similarity index 57% rename from test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html rename to tests/testdata/test_sync/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html index 79bd1fac..6ccd3f5d 100644 --- a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html +++ b/tests/testdata/test_sync/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html @@ -6,15 +6,13 @@+2021/05/23 23:27:48 Checking out tag: 1.2.0 +2021/05/23 23:27:49 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun + +Linter results for project: no errors or warnings + +------------------- + +Linter results for projects: 0 ERRORS, 4 WARNINGS + +
++2021/05/23 23:27:49 Error syncing library: exit status 1 +2021/05/23 23:27:49 Checking out tag: 1.2.1 +2021/05/23 23:27:49 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) + +Linter results for project: 1 ERRORS, 4 WARNINGS + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI + +Linter results for project: no errors or warnings + +------------------- + +Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun + +Linter results for project: no errors or warnings + +------------------- + +Linter results for projects: 1 ERRORS, 4 WARNINGS + +
++2021/05/23 23:27:49 Error syncing library: exit status 1 +2021/05/23 23:27:49 Checking out tag: 1.2.2 +2021/05/23 23:27:50 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:50 Error syncing library: exit status 1 +2021/05/23 23:27:50 Checking out tag: 1.2.3 +2021/05/23 23:27:50 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:50 Error syncing library: exit status 1 +2021/05/23 23:27:50 Checking out tag: 1.2.4 +2021/05/23 23:27:51 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:51 Error syncing library: exit status 1 +2021/05/23 23:27:51 Checking out tag: 1.3.0 +2021/05/23 23:27:51 Arduino Lint found errors: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:51 Error syncing library: exit status 1 +2021/05/23 23:27:51 Checking out tag: 1.3.1 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.3.1 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 1 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.4.0 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.4.0 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.4.1 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.4.1 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.5.0 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.0 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.5.1 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.1 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.5.2 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.2 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.5.3 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.3 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.5.4 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.5.4 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.6.0 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.0 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.6.1 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.1 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.6.2 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.2 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.6.3 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.3 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 5 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.6.4 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.4 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.6.5 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.6.5 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.7.0 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.0 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.7.1 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.1 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.7.2 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.2 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++2021/05/23 23:27:52 Checking out tag: 1.7.3 +2021/05/23 23:27:52 Release ArduinoCloudThing:1.7.3 already loaded, skipping +2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements: +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
++ +Click to expand Arduino Lint report
+
+Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS + +------------------- + + +
+