This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Pulling changes from main branch and upgrading rollkit to latest (
#1251) [Rollkit: v0.50.0-rc.1-rollkit-v0.11.0-rc2-no-fraud-proofs](https://github.com/rollkit/cosmos-sdk/releases/tag/v0.50.0-rc.1-rollkit-v0.11.0-rc2-no-fraud-proofs) --------- Signed-off-by: monem <[email protected]> Signed-off-by: Devon Bear <[email protected]> Signed-off-by: Josh Stein <[email protected]> Co-authored-by: Devon Bear <[email protected]> Co-authored-by: Cal Bera <[email protected]> Co-authored-by: ocnc <[email protected]> Co-authored-by: monem <[email protected]> Co-authored-by: mmsqe <[email protected]> Co-authored-by: Taeguk Kwon <[email protected]> Co-authored-by: steve806 <[email protected]> Co-authored-by: corduroy <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ocnc <[email protected]> Co-authored-by: BrickBera <[email protected]> Co-authored-by: shuoer86 <[email protected]> Co-authored-by: Josh Stein <[email protected]> Co-authored-by: Diego <[email protected]> Co-authored-by: Ganesha Upadhyaya <[email protected]> Co-authored-by: joshcs.eth ᵍᵐ <[email protected]>
- Loading branch information
1 parent
602ecc9
commit 2289cee
Showing
546 changed files
with
18,798 additions
and
44,386 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: daily | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # This schedule runs the workflow daily at midnight UTC | ||
|
||
jobs: | ||
docs: | ||
strategy: | ||
matrix: | ||
go-version: [1.21.3] | ||
python-version: [3.11.5] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout polaris | ||
uses: actions/checkout@v3 | ||
with: | ||
path: polaris | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
- name: Forge doc | ||
run: | | ||
cd polaris | ||
forge doc | ||
- name: Checkout docs-monorepo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: berachain/docs-monorepo | ||
token: ${{ secrets.DOCS_TOKEN }} | ||
path: docs-monorepo | ||
ref: main | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Generate docs | ||
run: | | ||
cd docs-monorepo | ||
pip install -r apps/digest/requirements.txt | ||
python apps/digest/main.py polaris | ||
git status | ||
- name: Commit and push changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Update docs with Polaris changes | ||
repository: docs-monorepo | ||
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | ||
|
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 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
dir: "{{.InterfaceDir}}/mocks" | ||
mockname: "{{.InterfaceNameCamel}}" | ||
filename: "{{.InterfaceNameSnake}}.go" | ||
outpkg: "mocks" | ||
packages: | ||
pkg.berachain.dev/polaris/cosmos/config: | ||
config: | ||
recursive: True | ||
with-expecter: true | ||
all: True | ||
pkg.berachain.dev/polaris/cosmos/txpool: | ||
config: | ||
recursive: True | ||
with-expecter: true | ||
all: True | ||
pkg.berachain.dev/polaris/eth/core/state: | ||
config: | ||
recursive: True | ||
with-expecter: true | ||
all: True | ||
|
Oops, something went wrong.