-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Dan Kanefsky <[email protected]>
- Loading branch information
Showing
27 changed files
with
9,027 additions
and
142 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: E2E Tests | ||
|
||
on: | ||
pull_request: | ||
push: | ||
|
||
env: | ||
TAR_PATH: heighliner.tar | ||
|
||
jobs: | ||
heighliner: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build Docker image | ||
uses: strangelove-ventures/[email protected] | ||
with: | ||
registry: "" | ||
tag: local | ||
tar-export-path: ${{ env.TAR_PATH }} | ||
platform: linux/amd64 | ||
git-ref: ${{ github.head_ref }} | ||
|
||
chain: noble-fiattokenfactory-simd | ||
dockerfile: cosmos | ||
build-target: make install | ||
binaries: | | ||
- simapp/build/simd | ||
- name: Publish Tarball as Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ env.TAR_PATH }} | ||
|
||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21 | ||
|
||
- name: Load Image | ||
run: docker image load -i ${{ env.TAR_PATH }} | ||
|
||
- name: Run E2E Tests | ||
run: make test-e2e |
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 +1,2 @@ | ||
.idea | ||
build |
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,5 @@ | ||
- name: noble-fiattokenfactory-simd | ||
dockerfile: cosmos | ||
build-target: make build | ||
binaries: | ||
- simapp/build/simd |
Oops, something went wrong.