From 9a2c5b82ade92d169dc69ca546e9cb20e0872e4b Mon Sep 17 00:00:00 2001 From: Marko Date: Tue, 18 Jun 2024 07:33:30 +0200 Subject: [PATCH] ci: remove runsim from ci (#20702) --- .github/workflows/sims-nightly.yml | 20 -------------------- docs/architecture/adr-059-test-scopes.md | 2 -- 2 files changed, 22 deletions(-) diff --git a/.github/workflows/sims-nightly.yml b/.github/workflows/sims-nightly.yml index 3c1375cb3f..a4a1526223 100644 --- a/.github/workflows/sims-nightly.yml +++ b/.github/workflows/sims-nightly.yml @@ -15,22 +15,6 @@ concurrency: cancel-in-progress: true jobs: - install-runsim: - permissions: - contents: none - runs-on: ubuntu-latest - steps: - - uses: actions/setup-go@v5 - with: - go-version: "1.22" - check-latest: true - - name: Install runsim - run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0 - - uses: actions/cache@v4 - with: - path: ~/go/bin - key: ${{ runner.os }}-go-runsim-binary - test-sim-multi-seed-long: runs-on: ubuntu-latest steps: @@ -39,10 +23,6 @@ jobs: with: go-version: "1.22" check-latest: true - - uses: actions/cache@v4 - with: - path: ~/go/bin - key: ${{ runner.os }}-go-runsim-binary - name: test-sim-multi-seed-long run: | make test-sim-multi-seed-long diff --git a/docs/architecture/adr-059-test-scopes.md b/docs/architecture/adr-059-test-scopes.md index b8b5cfef6b..cb1263443b 100644 --- a/docs/architecture/adr-059-test-scopes.md +++ b/docs/architecture/adr-059-test-scopes.md @@ -131,8 +131,6 @@ Modules not returning simulation operations: * `mint` * `params` -A separate binary, [runsim](https://github.com/cosmos/tools/tree/master/cmd/runsim), is responsible for kicking off some of these tests and -managing their life cycle. #### Limitations