From e2b08a385422729f68341839f61edb7a7f2a66a1 Mon Sep 17 00:00:00 2001 From: Molly Karcher Date: Fri, 5 Jan 2024 15:22:03 -0500 Subject: [PATCH] Run CI on multiple ubuntu versions --- .github/workflows/rust.yml | 6 ------ .github/workflows/soroban-rpc.yml | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0bc4e7e65..599b4cbe9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -47,12 +47,6 @@ jobs: target: x86_64-unknown-linux-gnu - os: ubuntu-latest target: aarch64-unknown-linux-gnu - - os: macos-latest - target: x86_64-apple-darwin - - os: macos-latest - target: aarch64-apple-darwin - - os: windows-latest-8-cores - target: x86_64-pc-windows-msvc runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/soroban-rpc.yml b/.github/workflows/soroban-rpc.yml index f26b2b376..95c32cc4c 100644 --- a/.github/workflows/soroban-rpc.yml +++ b/.github/workflows/soroban-rpc.yml @@ -14,7 +14,7 @@ jobs: name: Unit tests strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-20.04, ubuntu-22.04] go: [1.21] runs-on: ${{ matrix.os }} steps: @@ -105,7 +105,7 @@ jobs: continue-on-error: true strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-20.04, ubuntu-22.04] go: [1.21] test: ['.*CLI.*', '^Test(([^C])|(C[^L])|(CL[^I])).*$'] runs-on: ${{ matrix.os }}