1. 14 Aug, 2020 1 commit
  2. 10 Aug, 2020 1 commit
  3. 04 Aug, 2020 3 commits
    • Silvano Cerza's avatar
      [skip changelog] Build is now uploaded as artifact when running tests workflow (#877) · bd6c8618
      Silvano Cerza authored
      * [skip changelog] Build is now uploaded as artifact when running tests workflow
      
      * [skip changelog] Added more information to workflow artifacts
      
      * [skip changelog] Fix artifacts paths
      
      * [skip changelog] Update upload-artifact action version in test workflow
      
      * [skip changelog] Test artifacts are now uploaded separately
      bd6c8618
    • per1234's avatar
      [skip changelog] Disable scheduled workflows that would always fail from running in forks (#888) · a875807c
      per1234 authored
      * Disable workflows that would always fail from running in forks
      
      These workflows use resources that are only available when run in the arduino/arduino-cli repository, so would always fail when they run in a repository. They are of no value to fork repositories. They are triggered by the schedule event, so they cause regular annoying and confusing workflow failure notifications for every fork owner.
      
      * Don't trigger link validation CI workflow on schedule event when in a fork
      a875807c
    • per1234's avatar
      [skip changelog] Update references to docs workflow (#890) · b2bd0de2
      per1234 authored
      The docs workflow was split into two workflows: publish-docs and validate-docs, but the references to the original workflow were not updated.
      b2bd0de2
  4. 03 Aug, 2020 4 commits
    • per1234's avatar
      [skip changelog] Run CI workflows that are useful to contributors on pushes to any branch (#887) · 466c8c2f
      per1234 authored
      * Split docs workflow into validate and publish workflows
      
      The docs workflow had two uses:
      
      - Check that changes to docs don't break the static website build system
      - Publish the docs to the website
      
      To make the CI system friendly to contributors, it should be easy for them to validate documentation changes from a feature branch, meaning the validation aspect should run on a push to any branch. However, the special behavior of the workflow to publish on pushes conflicted with that usage. The most simple solution is to split the workflow into two. The validation workflow contains the process of interest to contributors, and is thus made friendly to their development process. The publishing workflow is not of interest to contributors, and thus doesn't need to be configured to run on pushes to any branch.
      
      * Run workflows that are useful to contributors on push to any branch
      
      Contributors should run CI in their feature branch to make sure it's passing before submitting a PR. Previously, the CI workflows were configured to run only on push to the master branch, meaning that contributors would need to modify the workflows just to get them to run on a feature branch. It's very unlikely that a contributor would do that, so they are more likely to just submit the PR, then if CI on the PR fails push fixup commits until CI is passing.
      
      The solution is simply to remove the filters that caused the workflows to run only on push to master.
      466c8c2f
    • per1234's avatar
      [skip changelog] Use v1 ref of arduino/setup-protoc action (#889) · 67b47b66
      per1234 authored
      The v1.1.0 version of the action neglected to define its repo-token input in the metadata, which results in a `Unexpected input(s) 'repo-token', valid inputs are ['version']` warning shown in the workflow summary on every run. The v1.1.1 release remedies this.
      
      The use of the v1 ref will allow the workflows to benefit from any new releases of the action that don't cause breaking changes.
      67b47b66
    • per1234's avatar
      [skip changelog] Remove unnecessary token input from Codecov upload steps of test workflow (#886) · fead7fdf
      per1234 authored
      * Use v1 ref of codecov/codecov-action GitHub Actions action
      
      Previously, the workflow pinned the outdated v1.0.2 ref. The requirement for an upload token has been removed since the 1.0.2 release. Removing the token input will provide several benefits:
      
      - Prevent failures when the workflow is run in forks, which won't have the CODECOV_TOKEN secret defined.
      - Allow configuring the workflow to be triggered by pull_request events, making it easy to evaluate the impact the pull request has on code coverage.
      
      The use of the v1 ref, rather than pinning a specific version allows the workflow to automatically benefit from ongoing development work on the action, while still preventing it from being affected by breaking changes.
      
      * Remove unnecessary token input from Codecov upload steps of test workflow
      
      With the modern versions of the codecov/codecov-action GitHub Actions action, the upload token is only required for private repositories. Now that we are using a modern version of the action, this input only has a harmful effect by causing the workflow to fail when run in forks and also preventing us from using Codecov to evaluate the impact on code coverage of pull requests.
      fead7fdf
    • per1234's avatar
      [skip changelog] Add FAQ item re: Serial Monitor (#885) · 1b0e6a3f
      per1234 authored
      * Add FAQ item re: Serial Monitor
      
      * Mention gRPC Monitor service in Serial Monitor FAQ
      1b0e6a3f
  5. 31 Jul, 2020 2 commits
  6. 30 Jul, 2020 2 commits
    • per1234's avatar
      [skip changelog] Format generated documentation (#883) · 5f708cdc
      per1234 authored
      We now use Prettier to enforce a formatting standard on the Arduino CLI documentation. Previously, the generated documentation was not compliant with this standard, which caused some problems:
      
      Incorrect list formatting of gRPC reference's table of contents. Prettier uses a two space indent. Because the stock Python-Markdown renderer requires a four space indent for nested lists, it was necessary to start using the mdx_truly_sane_lists extension to support the Prettier indent size. The use of the extension caused the four space indent used in the generated gRPC interface documentation's nested lists to no longer be rendered. It's possible that inconsistent formatting could cause similar issues. By making the formatting of all the documentation consistent, we can be sure that a specific renderer will handle all the docs correctly.
      
      task docs:check fails when run on repository that contains generated docs. Although this could also have been fixed by excluding the generated documentation paths, the list formatting issue needed to be fixed anyway, and it happens to fix this issue as well.
      5f708cdc
    • Silvano Cerza's avatar
      [skip changelog] Add task and workflow to check for dead links in docs (#878) · 0483882b
      Silvano Cerza authored
      * [skip changelog] Add task and workflow to check for dead links in docs
      
      * [skip changelog] Fix link checking task and workflow
      
      * [skip changelog] Fix some documentation links
      0483882b
  7. 29 Jul, 2020 1 commit
  8. 28 Jul, 2020 6 commits
  9. 27 Jul, 2020 3 commits
  10. 23 Jul, 2020 17 commits