-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Ostracon binary and docs (#282)
* fix: Update build/test environments * doc: Replace `tendermint` with `ostracon` * refactor: Change the binary name to `ostracon` * refactor: Update package to line/ostracon on go.mod * refactor: Update package line/ostracon on `*.proto/*.go` * (squash) Rollback to `https://github.com/tendermint/tendermint/issues` * (squash) Change ` tendermint ` to ` ostracon ` * (squash) Change Tendermint to Ostracon * (squash) Typo * (squash) Typo
- Loading branch information
Showing
582 changed files
with
4,385 additions
and
4,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Runs randomly generated E2E testnets nightly | ||
# on the main release branch | ||
|
||
name: e2e-nightly-main | ||
on: | ||
workflow_dispatch: # allow running workflow manually, in theory | ||
schedule: | ||
- cron: '0 2 * * *' | ||
|
||
jobs: | ||
e2e-nightly-test: | ||
# Run parallel jobs for the listed testnet groups (must match the | ||
# ./build/generator -g flag) | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
group: ['00', '01', '02', '03'] | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: '^1.15.4' | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
ref: 'main' | ||
|
||
- name: Build | ||
working-directory: test/e2e | ||
# Run make jobs in parallel, since we can't run steps in parallel. | ||
run: make -j2 docker generator runner | ||
|
||
- name: Generate testnets | ||
working-directory: test/e2e | ||
# When changing -g, also change the matrix groups above | ||
run: ./build/generator -g 4 -d networks/nightly | ||
|
||
- name: Run testnets in group ${{ matrix.group }} | ||
working-directory: test/e2e | ||
run: ./run-multiple.sh networks/nightly/*-group${{ matrix.group }}-*.toml | ||
|
||
# e2e-nightly-fail: | ||
# needs: e2e-nightly-test | ||
# if: ${{ failure() }} | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Notify Slack on failure | ||
# uses: rtCamp/action-slack-notify@e9db0ef | ||
# env: | ||
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
# SLACK_CHANNEL: ostracon-internal | ||
# SLACK_USERNAME: Nightly E2E Tests | ||
# SLACK_ICON_EMOJI: ':skull:' | ||
# SLACK_COLOR: danger | ||
# SLACK_MESSAGE: Nightly E2E tests failed on main | ||
# SLACK_FOOTER: '' | ||
|
||
# e2e-nightly-success: # may turn this off once they seem to pass consistently | ||
# needs: e2e-nightly-test | ||
# if: ${{ success() }} | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Notify Slack on success | ||
# uses: rtCamp/action-slack-notify@ae4223259071871559b6e9d08b24a63d71b3f0c0 | ||
# env: | ||
# SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
# SLACK_CHANNEL: ostracon-internal | ||
# SLACK_USERNAME: Nightly E2E Tests | ||
# SLACK_ICON_EMOJI: ':white_check_mark:' | ||
# SLACK_COLOR: good | ||
# SLACK_MESSAGE: Nightly E2E tests passed on main | ||
# SLACK_FOOTER: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#name: Check Markdown links | ||
#on: | ||
# schedule: | ||
# - cron: '* */24 * * *' | ||
#jobs: | ||
# markdown-link-check: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@master | ||
# - uses: gaurav-nelson/[email protected] | ||
# with: | ||
# folder-path: "docs" | ||
name: Check Markdown links | ||
on: | ||
schedule: | ||
- cron: '* */24 * * *' | ||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: gaurav-nelson/[email protected] | ||
with: | ||
folder-path: "docs" |
Oops, something went wrong.