From: Zack Cerza Date: Thu, 30 Mar 2023 22:09:18 +0000 (-0600) Subject: .github: Explicitly define test matrix X-Git-Tag: 1.2.0~115^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=626adce3ff3c4768e96c2abb24f1065451a8e5d7;p=teuthology.git .github: Explicitly define test matrix Signed-off-by: Zack Cerza --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3750d55a..395b21a38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] - python: ['3.7', '3.8', '3.9', '3.10'] + include: + - os: ubuntu-20.04 + python: 3.7 + - os: ubuntu-20.04 + python: 3.8 + - os: ubuntu-20.04 + python: 3.9 + - os: ubuntu-22.04 + python: "3.10" steps: - uses: actions/checkout@v2 - name: Setup Python diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index a0bd3b381..335f38ac5 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -12,8 +12,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest] - python: ['3.7', '3.8', '3.9', '3.10'] + include: + - os: ubuntu-20.04 + python: 3.7 + - os: ubuntu-20.04 + python: 3.8 + - os: ubuntu-20.04 + python: 3.9 + - os: ubuntu-22.04 + python: "3.10" steps: - name: Set up Python uses: actions/setup-python@v3 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 162d51032..69a55b877 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Test using docker-compose