-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2df3e6
commit 3b1d7d4
Showing
2 changed files
with
87 additions
and
34 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ci-${{ github.ref }}-sims | ||
cancel-in-progress: true | ||
|
@@ -23,7 +23,7 @@ jobs: | |
with: | ||
go-version: "1.21" | ||
check-latest: true | ||
- run: make -C simapp build | ||
- run: make build | ||
- name: Install runsim | ||
run: go install github.com/cosmos/tools/cmd/[email protected] | ||
- uses: actions/cache@v3 | ||
|
@@ -49,6 +49,59 @@ jobs: | |
run: | | ||
make test-sim-nondeterminism | ||
# test-sim-import-export: | ||
# runs-on: ubuntu-latest | ||
# needs: [build] | ||
# timeout-minutes: 60 | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions/setup-go@v4 | ||
# with: | ||
# go-version: "1.21" | ||
# check-latest: true | ||
# - uses: actions/cache@v3 | ||
# with: | ||
# path: ~/go/bin | ||
# key: ${{ runner.os }}-go-runsim-binary | ||
# - name: test-sim-import-export | ||
# run: | | ||
# make test-sim-import-export | ||
|
||
# test-sim-after-import: | ||
# runs-on: ubuntu-latest | ||
# needs: [build] | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions/setup-go@v4 | ||
# with: | ||
# go-version: "1.21" | ||
# check-latest: true | ||
# - uses: actions/cache@v3 | ||
# with: | ||
# path: ~/go/bin | ||
# key: ${{ runner.os }}-go-runsim-binary | ||
# - name: test-sim-after-import | ||
# run: | | ||
# make test-sim-after-import | ||
|
||
# test-sim-multi-seed-short: | ||
# runs-on: ubuntu-latest | ||
# needs: [build] | ||
# timeout-minutes: 60 | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions/setup-go@v4 | ||
# with: | ||
# go-version: "1.21" | ||
# check-latest: true | ||
# - uses: actions/cache@v3 | ||
# with: | ||
# path: ~/go/bin | ||
# key: ${{ runner.os }}-go-runsim-binary | ||
# - name: test-sim-multi-seed-short | ||
# run: | | ||
# make test-sim-multi-seed-short | ||
|
||
sims-notify-success: | ||
needs: | ||
[test-sim-multi-seed-short, test-sim-after-import, test-sim-import-export] | ||
|
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