You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.4 KiB

build(deps): Bump actions/checkout from 2.3.4 to 2.3.5 (#7139) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v2.3.5</h2> <p>Update dependencies</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/checkout/commit/1e204e9a9253d643386038d443f96446fa156a97"><code>1e204e9</code></a> update licensed check (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/606">#606</a>)</li> <li><a href="https://github.com/actions/checkout/commit/0299a0d2b67d48224ce047d03c69693b37fe77fe"><code>0299a0d</code></a> update dist (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/605">#605</a>)</li> <li><a href="https://github.com/actions/checkout/commit/be0f44845645e415725af198163a96fea9e54334"><code>be0f448</code></a> Bump ws from 5.2.2 to 5.2.3 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/604">#604</a>)</li> <li><a href="https://github.com/actions/checkout/commit/56c00a7b1f53d3094df328ad4c2cd2b2d385c569"><code>56c00a7</code></a> Bump tmpl from 1.0.4 to 1.0.5 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/588">#588</a>)</li> <li><a href="https://github.com/actions/checkout/commit/85e47d1a2bef5be8023f6dce02e0e8451938924f"><code>85e47d1</code></a> Bump path-parse from 1.0.6 to 1.0.7 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/568">#568</a>)</li> <li><a href="https://github.com/actions/checkout/commit/3fc17f8645e9648158a6d23b033ab5f62df29f3c"><code>3fc17f8</code></a> Bump hosted-git-info from 2.8.5 to 2.8.9 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/500">#500</a>)</li> <li><a href="https://github.com/actions/checkout/commit/e3bc06d98631ce7e0e3db6bd158fafe028709e9f"><code>e3bc06d</code></a> Bump lodash from 4.17.15 to 4.17.21 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/499">#499</a>)</li> <li><a href="https://github.com/actions/checkout/commit/442567ba5761652b13c5c842a2f959ac9da6be57"><code>442567b</code></a> Bump handlebars from 4.5.3 to 4.7.7 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/497">#497</a>)</li> <li><a href="https://github.com/actions/checkout/commit/7f00b66d06eed909da8e56729955e53d186d95ed"><code>7f00b66</code></a> Bump y18n from 4.0.0 to 4.0.1 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/469">#469</a>)</li> <li><a href="https://github.com/actions/checkout/commit/eccf386318b560bdd401913a9fe3cca56dc369d6"><code>eccf386</code></a> Bump <code>@​actions/core</code> from 1.1.3 to 1.2.6 (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/361">#361</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actions/checkout/compare/v2.3.4...v2.3.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=2.3.4&new-version=2.3.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
3 years ago
  1. # Runs randomly generated E2E testnets nightly
  2. # on the 0.34.x release branch
  3. # !! If you change something in this file, you probably want
  4. # to update the e2e-nightly-master workflow as well!
  5. name: e2e-nightly-34x
  6. on:
  7. workflow_dispatch: # allow running workflow manually, in theory
  8. schedule:
  9. - cron: '0 2 * * *'
  10. jobs:
  11. e2e-nightly-test:
  12. # Run parallel jobs for the listed testnet groups (must match the
  13. # ./build/generator -g flag)
  14. strategy:
  15. fail-fast: false
  16. matrix:
  17. group: ['00', '01']
  18. runs-on: ubuntu-latest
  19. timeout-minutes: 60
  20. steps:
  21. - uses: actions/setup-go@v2
  22. with:
  23. go-version: '1.17'
  24. - uses: actions/checkout@v2.3.5
  25. with:
  26. ref: 'v0.34.x'
  27. - name: Build
  28. working-directory: test/e2e
  29. # Run make jobs in parallel, since we can't run steps in parallel.
  30. run: make -j2 docker generator runner
  31. - name: Generate testnets
  32. working-directory: test/e2e
  33. # When changing -g, also change the matrix groups above
  34. run: ./build/generator -g 2 -d networks/nightly
  35. - name: Run testnets in group ${{ matrix.group }}
  36. working-directory: test/e2e
  37. run: ./run-multiple.sh networks/nightly/*-group${{ matrix.group }}-*.toml
  38. e2e-nightly-fail:
  39. needs: e2e-nightly-test
  40. if: ${{ failure() }}
  41. runs-on: ubuntu-latest
  42. steps:
  43. - name: Notify Slack on failure
  44. uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7
  45. env:
  46. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
  47. SLACK_CHANNEL: tendermint-internal
  48. SLACK_USERNAME: Nightly E2E Tests
  49. SLACK_ICON_EMOJI: ':skull:'
  50. SLACK_COLOR: danger
  51. SLACK_MESSAGE: Nightly E2E tests failed on v0.34.x
  52. SLACK_FOOTER: ''
  53. e2e-nightly-success: # may turn this off once they seem to pass consistently
  54. needs: e2e-nightly-test
  55. if: ${{ success() }}
  56. runs-on: ubuntu-latest
  57. steps:
  58. - name: Notify Slack on success
  59. uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7
  60. env:
  61. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
  62. SLACK_CHANNEL: tendermint-internal
  63. SLACK_USERNAME: Nightly E2E Tests
  64. SLACK_ICON_EMOJI: ':white_check_mark:'
  65. SLACK_COLOR: good
  66. SLACK_MESSAGE: Nightly E2E tests passed on v0.34.x
  67. SLACK_FOOTER: ''