Skip to content

Commit d7247b0

Browse files
committed
reduce the number of jobs
1 parent f3fa91e commit d7247b0

File tree

1 file changed

+4
-43
lines changed

1 file changed

+4
-43
lines changed

.github/workflows/unit_test_ci.yml

Lines changed: 4 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,6 @@ concurrency:
1515

1616
jobs:
1717

18-
Test4_py38_tf2_9: # Do not change this name because it is used in Ruleset of this repo.
19-
strategy:
20-
fail-fast: false
21-
runs-on: ubuntu-latest
22-
23-
steps:
24-
- name: Checkout code
25-
uses: actions/checkout@v4
26-
27-
- name: Run Tests (Py39-TF2.9-18)
28-
uses: ./.github/actions/unit_test
29-
with:
30-
os: 'ubuntu-latest'
31-
tf_version: '2.9.0'
32-
python_version: '3.9'
33-
ort_version: '1.16.3'
34-
onnx_version: '1.16.1'
35-
opset_version: '18'
36-
skip_tflite: 'False'
37-
38-
- name: Upload Test Results
39-
if: always()
40-
uses: actions/upload-artifact@v4
41-
with:
42-
name: Test Results (Py39-TF2.9-18-ubuntu)
43-
path: ./**/test-results-*.xml
44-
4518
Test4_py310_tf2_19: # Do not change this name because it is used in Ruleset of this repo.
4619
strategy:
4720
fail-fast: false
@@ -101,24 +74,12 @@ jobs:
10174
fail-fast: false
10275
matrix:
10376
name:
104-
- 'py39-tf2.15'
105-
- 'py310-tf2.19'
106-
- 'py311-tf2.19'
77+
- 'py312-tf2.19'
10778
os: ['ubuntu-latest', 'windows-2022']
108-
opset_version: ['18', '15']
79+
opset_version: ['18']
10980
skip_tflite: ['False']
11081
include:
111-
- name: 'py39-tf2.15'
112-
tf_version: '2.15.0'
113-
python_version: '3.9'
114-
ort_version: '1.16.3'
115-
onnx_version: '1.16.1'
116-
- name: 'py310-tf2.19'
117-
tf_version: '2.19.0'
118-
python_version: '3.10'
119-
ort_version: '1.20.1'
120-
onnx_version: '1.17.0'
121-
- name: 'py311-tf2.19'
82+
- name: 'py312-tf2.19'
12283
tf_version: '2.19.0'
12384
python_version: '3.11'
12485
ort_version: '1.20.1'
@@ -149,7 +110,7 @@ jobs:
149110

150111
publish-test-results:
151112
name: "Publish Tests Results to Github"
152-
needs: [Test4_py38_tf2_9, Test4_py310_tf2_19, Test4_py311_tf2_19, Extra_tests4]
113+
needs: [Test4_py310_tf2_19, Test4_py311_tf2_19, Extra_tests4]
153114
runs-on: ubuntu-latest
154115
permissions:
155116
checks: write

0 commit comments

Comments
 (0)