-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into stack/fix-twap
- Loading branch information
Showing
86 changed files
with
2,794 additions
and
602 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 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,52 @@ | ||
name: Render and Deploy Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
|
||
build: | ||
name: Render and deploy protocol and API docs | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/checkout@v3 | ||
with: | ||
lfs: true | ||
- name: Install rust toolchain | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Load Rust caching | ||
uses: astriaorg/[email protected] | ||
- name: Load get-version action to grab version component of deployment path | ||
uses: battila7/get-version-action@v2 | ||
id: get_version | ||
- name: Print version component of deployment path | ||
run: echo ${{ steps.get_version.outputs.version }} | ||
- name: Install mdbook | ||
run: cargo install mdbook mdbook-katex mdbook-mermaid | ||
- name: Build protocol spec | ||
run: cd docs/protocol && mdbook build | ||
- name: Move protocol spec to subdirectory & Deploy | ||
env: | ||
DO_DOCS_PK: ${{ secrets.DO_DOCS_PK }} | ||
DO_DOCS_IP: ${{ secrets.DO_DOCS_IP }} | ||
run: | | ||
cd docs/protocol | ||
if [ -d "do-tmp" ]; then rm -rf do-tmp; fi | ||
mkdir do-tmp | ||
mv book do-tmp/${{ steps.get_version.outputs.version }} | ||
tree do-tmp | ||
which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y ) | ||
which rsync || ( apt-get update -y && apt-get install rsync -y ) | ||
eval $(ssh-agent -s) | ||
ssh-add <(echo "$DO_DOCS_PK" ) | ||
mkdir -p ~/.ssh | ||
chmod 700 ~/.ssh | ||
ssh-keyscan $DO_DOCS_IP >> ~/.ssh/known_hosts | ||
chmod 644 ~/.ssh/known_hosts | ||
cd do-tmp/main | ||
scp -r * root@$DO_DOCS_IP:/var/www/html |
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 |
---|---|---|
|
@@ -12,17 +12,19 @@ on: | |
workflow_dispatch: | ||
|
||
env: | ||
GO_VERSION: '1.20.5' | ||
GO_VERSION: "1.20.5" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
get_diff: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Check out repository code | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- | ||
name: Get git diff | ||
- name: Get git diff | ||
uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
|
@@ -41,37 +43,29 @@ jobs: | |
if: needs.get_diff.outputs.git_diff | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Check out repository code | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- | ||
name: 🐿 Setup Golang | ||
- name: 🐿 Setup Golang | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{env.GO_VERSION}} | ||
- | ||
name: Create a file with all core Cosmos SDK pkgs | ||
- name: Create a file with all core Cosmos SDK pkgs | ||
run: go list ./... ./osmomath/... ./osmoutils/... ./x/ibc-hooks/... ./x/epochs | grep -E -v 'tests/simulator|e2e' > pkgs.txt | ||
- | ||
name: Split pkgs into 4 files | ||
- name: Split pkgs into 4 files | ||
run: split -d -n l/4 pkgs.txt pkgs.txt.part. | ||
- | ||
uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: "${{ github.sha }}-00" | ||
path: ./pkgs.txt.part.00 | ||
- | ||
uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: "${{ github.sha }}-01" | ||
path: ./pkgs.txt.part.01 | ||
- | ||
uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: "${{ github.sha }}-02" | ||
path: ./pkgs.txt.part.02 | ||
- | ||
uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: "${{ github.sha }}-03" | ||
path: ./pkgs.txt.part.03 | ||
|
@@ -85,23 +79,18 @@ jobs: | |
matrix: | ||
part: ["00", "01", "02", "03"] | ||
steps: | ||
- | ||
name: Check out repository code | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- | ||
name: 🐿 Setup Golang | ||
- name: 🐿 Setup Golang | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{env.GO_VERSION}} | ||
- | ||
name: Display go version | ||
- name: Display go version | ||
run: go version | ||
- | ||
uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: "${{ github.sha }}-${{ matrix.part }}" | ||
- | ||
name: Test & coverage report creation | ||
- name: Test & coverage report creation | ||
run: | | ||
VERSION=$(echo $(git describe --tags) | sed 's/^v//') || VERSION=${GITHUB_SHA} | ||
TESTS=$(cat pkgs.txt.part.${{ matrix.part }}) | ||
|
@@ -111,59 +100,63 @@ jobs: | |
e2e: | ||
needs: get_diff | ||
if: needs.get_diff.outputs.git_diff | ||
runs-on: ubuntu-latest | ||
runs-on: self-hosted | ||
timeout-minutes: 25 | ||
steps: | ||
- | ||
name: Check out repository code | ||
- name: Clean up Pre-Existing E2E Docker containers | ||
run: | | ||
# Remove containers with names starting with "osmo-test-" | ||
docker ps -aqf "name=osmo-test-*" | xargs -r docker rm -f | ||
# Remove containers with names starting with "hermes-relayer" | ||
docker ps -aqf "name=hermes-relayer*" | xargs -r docker rm -f | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- | ||
name: 🐿 Setup Golang | ||
- name: 🐿 Setup Golang | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{env.GO_VERSION}} | ||
- | ||
name: Set up QEMU | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- | ||
name: Set up Docker Buildx | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- | ||
name: Build e2e image | ||
- name: Build e2e image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
load: true | ||
context: . | ||
tags: osmosis:debug | ||
# Use experimental Cache backend API: | ||
# Use experimental Cache backend API: | ||
# https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md#cache-backend-api | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
build-args: | | ||
BASE_IMG_TAG=debug | ||
- | ||
name: Test e2e and Upgrade | ||
- name: Test e2e and Upgrade | ||
run: make test-e2e-ci | ||
- | ||
name: Dump docker logs on failure | ||
- name: Dump docker logs on failure | ||
if: failure() | ||
uses: jwalton/gh-docker-logs@v2 | ||
with: | ||
dest: "./logs" | ||
- | ||
name: Tar logs | ||
- name: Tar logs | ||
if: failure() | ||
run: tar cvzf ./logs.tgz ./logs | ||
- | ||
name: Upload logs to GitHub | ||
- name: Upload logs to GitHub | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: logs.tgz | ||
path: ./logs.tgz | ||
if: failure() | ||
- | ||
name: 🧹 Clean up Osmosis Home | ||
- name: 🧹 Clean up Osmosis Home | ||
if: always() | ||
run: rm -rf $HOME/.osmosisd/ || true | ||
- name: Clean up E2E Docker containers | ||
run: | | ||
# Remove containers with names starting with "osmo-test-" | ||
docker ps -aqf "name=osmo-test-*" | xargs -r docker rm -f | ||
# Remove containers with names starting with "hermes-relayer" | ||
docker ps -aqf "name=hermes-relayer*" | xargs -r docker rm -f |
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
Oops, something went wrong.