From 55007d0e87d068e2845eade865e87d5172a94e95 Mon Sep 17 00:00:00 2001 From: Reece Williams <31943163+Reecepbcups@users.noreply.github.com> Date: Wed, 25 Oct 2023 12:32:14 -0500 Subject: [PATCH] ubuntu-latest (#845) --- .github/workflows/e2e-tests.yml | 6 +++--- .github/workflows/unit-tests.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index bfa32978e..5e6fd0c67 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -11,7 +11,7 @@ concurrency: jobs: test-conformance: name: test-conformance - runs-on: [self-hosted, linux] + runs-on: ubuntu-latest steps: # Install and setup go - name: Set up Go 1.21 @@ -32,7 +32,7 @@ jobs: run: (go test -race -timeout 30m -failfast -v -p 2 ./cmd/interchaintest) || (echo "\n\n*****CHAIN and RELAYER LOGS*****" && cat "$HOME/.interchaintest/logs/interchaintest.log" && exit 1) test-ibc-examples: name: test-ibc-examples - runs-on: [self-hosted, linux] + runs-on: ubuntu-latest steps: # Install and setup go - name: Set up Go 1.21 @@ -54,7 +54,7 @@ jobs: run: go test -race -timeout 30m -failfast -v -p 2 ./examples/ibc test-cosmos-examples: name: test-cosmos-examples - runs-on: [self-hosted, linux] + runs-on: ubuntu-latest steps: # Install and setup go - name: Set up Go 1.21 diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 6e3d75e49..c1933d219 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -11,7 +11,7 @@ concurrency: jobs: test-unit: name: unit-tests - runs-on: [self-hosted, linux] + runs-on: ubuntu-latest steps: # Install and setup go - name: Set up Go 1.21