From 75e9a43c6aed2633dca67663c74e11e5aea342f5 Mon Sep 17 00:00:00 2001 From: Jakub Ramatowski Date: Thu, 3 Apr 2025 08:44:30 +0200 Subject: [PATCH 1/5] Test fix pipeline --- .github/workflows/test.yml | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc8bd208..e65cf0f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,13 +9,36 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: - - ubuntu-latest - python: [ 3.7, 3.9, 3.13] - splunk-version: - - "8.1" - - "8.2" - - "latest" + include: + - os: ubuntu-22.04 # Only for Python 3.7 + python: 3.7 + splunk-version: "8.1" + - os: ubuntu-22.04 + python: 3.7 + splunk-version: "8.2" + - os: ubuntu-22.04 + python: 3.7 + splunk-version: "latest" + + - os: ubuntu-latest # For newer Python versions + python: 3.9 + splunk-version: "8.1" + - os: ubuntu-latest + python: 3.9 + splunk-version: "8.2" + - os: ubuntu-latest + python: 3.9 + splunk-version: "latest" + + - os: ubuntu-latest + python: 3.13 + splunk-version: "8.1" + - os: ubuntu-latest + python: 3.13 + splunk-version: "8.2" + - os: ubuntu-latest + python: 3.13 + splunk-version: "latest" fail-fast: false steps: From ef8a3b4b69597bd1ea9116c776b437304896f8f1 Mon Sep 17 00:00:00 2001 From: Jakub Ramatowski Date: Thu, 3 Apr 2025 12:09:00 +0200 Subject: [PATCH 2/5] Test fix pipeline --- .github/workflows/test.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e65cf0f6..7837c27a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,36 +9,31 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: + splunk-version: + - "8.1" + - "8.2" + - "latest" include: - os: ubuntu-22.04 # Only for Python 3.7 python: 3.7 - splunk-version: "8.1" - os: ubuntu-22.04 python: 3.7 - splunk-version: "8.2" - os: ubuntu-22.04 python: 3.7 - splunk-version: "latest" - os: ubuntu-latest # For newer Python versions python: 3.9 - splunk-version: "8.1" - os: ubuntu-latest python: 3.9 - splunk-version: "8.2" - os: ubuntu-latest python: 3.9 - splunk-version: "latest" - os: ubuntu-latest python: 3.13 - splunk-version: "8.1" - os: ubuntu-latest python: 3.13 - splunk-version: "8.2" - os: ubuntu-latest python: 3.13 - splunk-version: "latest" fail-fast: false steps: From e25fc1b999cc6feb5d1ecca0117f615bb6192163 Mon Sep 17 00:00:00 2001 From: Jakub Ramatowski Date: Thu, 3 Apr 2025 12:16:55 +0200 Subject: [PATCH 3/5] Test fix pipeline --- .github/workflows/test.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7837c27a..e5ff1e2b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,31 +9,24 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: + os: + - ubuntu-latest + python: [ 3.7, 3.9, 3.13 ] splunk-version: - "8.1" - "8.2" - "latest" include: - - os: ubuntu-22.04 # Only for Python 3.7 + - os: ubuntu-22.04 python: 3.7 + splunk-version: "8.1" - os: ubuntu-22.04 python: 3.7 + splunk-version: "8.2" - os: ubuntu-22.04 python: 3.7 + splunk-version: "latest" - - os: ubuntu-latest # For newer Python versions - python: 3.9 - - os: ubuntu-latest - python: 3.9 - - os: ubuntu-latest - python: 3.9 - - - os: ubuntu-latest - python: 3.13 - - os: ubuntu-latest - python: 3.13 - - os: ubuntu-latest - python: 3.13 fail-fast: false steps: From 2586111432a10c89494fae97af0dde6eb1cb098a Mon Sep 17 00:00:00 2001 From: Jakub Ramatowski Date: Thu, 3 Apr 2025 12:17:47 +0200 Subject: [PATCH 4/5] Test fix pipeline --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5ff1e2b..9ef02c94 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: matrix: os: - ubuntu-latest - python: [ 3.7, 3.9, 3.13 ] + python: [ 3.9, 3.13 ] splunk-version: - "8.1" - "8.2" From 7418861064a7c4aa8fab3f4fdf3296d0e2c04f10 Mon Sep 17 00:00:00 2001 From: Jakub Ramatowski Date: Thu, 3 Apr 2025 12:21:03 +0200 Subject: [PATCH 5/5] Test fix pipeline --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9ef02c94..329c686c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ name: Python CI on: - [ push, pull_request, workflow_dispatch ] + [ push, workflow_dispatch ] jobs: build: