Skip to content

Commit a0cc5e2

Browse files
authored
remove testmo (#258)
1 parent b8cf630 commit a0cc5e2

File tree

4 files changed

+0
-63
lines changed

4 files changed

+0
-63
lines changed

.github/workflows/build-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
python: ${{ matrix.test_config.python }}
5454
timeout: ${{ matrix.test_config.timeout }}
5555
whl: ${{ needs.BUILD.outputs.whl }}
56-
testmo_run_id: ${{ needs.BUILD.outputs.testmo_run_id }}
5756
secrets: inherit
5857

5958
UPLOAD:
@@ -64,5 +63,4 @@ jobs:
6463
timeout: 40
6564
run_id: ${{ github.run_id }}
6665
push_to_pypi: ${{ inputs.push_to_pypi }}
67-
testmo_run_id: ${{ needs.BUILD.outputs.testmo_run_id }}
6866
secrets: inherit

.github/workflows/build.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ on:
2323
whl:
2424
description: 'basename for generated whl'
2525
value: ${{ jobs.BUILD.outputs.whl }}
26-
testmo_run_id:
27-
description: 'testmo run id'
28-
value: ${{ jobs.BUILD.outputs.testmo_run_id }}
2926

3027
# makes workflow manually callable
3128
workflow_dispatch:
@@ -61,7 +58,6 @@ jobs:
6158
run_id: ${{ github.run_id }}
6259
whl: ${{ steps.build.outputs.whlname }}
6360
tarfile: ${{ steps.build.outputs.tarname }}
64-
testmo_run_id: ${{ steps.create_testmo_run.outputs.id }}
6561

6662
steps:
6763

@@ -76,16 +72,6 @@ jobs:
7672
with:
7773
ref: ${{ inputs.gitref }}
7874

79-
- name: create testmo run
80-
id: create_testmo_run
81-
uses: neuralmagic/nm-actions/actions/testmo-run-create@v1.11.0
82-
with:
83-
testmo_url: https://neuralmagic.testmo.net
84-
testmo_token: ${{ secrets.TESTMO_TEST_TOKEN }}
85-
source: 'build-test'
86-
project_id: 14
87-
run_name: compressedtensors-${{ inputs.wf_category }}-${{ inputs.gitref }}-${GITHUB_ACTOR}
88-
8975
- name: build
9076
id: build
9177
uses: neuralmagic/nm-actions/actions/build-ml-whl@v1.12.0
@@ -136,17 +122,6 @@ jobs:
136122
gitref: ${{ inputs.gitref }}
137123
whl_status: ${{ steps.build.outputs.status }}
138124

139-
- name: report build status to testmo
140-
id: report_build
141-
uses: neuralmagic/nm-actions/actions/testmo-run-submit-thread@v1.11.0
142-
if: success() || failure()
143-
with:
144-
testmo_url: https://neuralmagic.testmo.net
145-
testmo_token: ${{ secrets.TESTMO_TEST_TOKEN }}
146-
testmo_run_id: ${{ steps.create_testmo_run.outputs.id }}
147-
results: build-results
148-
step_status: ${{ steps.build.outputs.status }}
149-
150125
- name: run status
151126
id: run_status
152127
if: success() || failure()

.github/workflows/test.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ on:
2323
description: "whl to test (variable appears late binding so unusable outside 'download artifact')"
2424
type: string
2525
required: true
26-
testmo_run_id:
27-
description: "testmo run id"
28-
type: string
29-
default: ''
3026

3127
# makes workflow manually callable
3228
workflow_dispatch:
@@ -51,10 +47,6 @@ on:
5147
description: "whl to test (variable appears late binding so unusable outside 'download artifact')"
5248
type: string
5349
required: true
54-
testmo_run_id:
55-
description: "testmo run id"
56-
type: string
57-
default: ''
5850

5951
jobs:
6052

@@ -103,24 +95,12 @@ jobs:
10395
with:
10496
venv: ${{ steps.create_venv.outputs.penv }}
10597

106-
- name: report test results
107-
id: report_test
108-
uses: neuralmagic/nm-actions/actions/testmo-run-submit-thread@v1.11.0
109-
if: (success() || failure()) && inputs.testmo_run_id != ''
110-
with:
111-
testmo_url: https://neuralmagic.testmo.net
112-
testmo_token: ${{ secrets.TESTMO_TEST_TOKEN }}
113-
testmo_run_id: ${{ inputs.testmo_run_id }}
114-
results: test-results
115-
step_status: ${{ steps.test.outputs.status }}
116-
11798
- name: summary
11899
uses: neuralmagic/nm-actions/actions/summary-test@v1.2.0
119100
if: success() || failure()
120101
with:
121102
test_label: ${{ inputs.test_label }}
122103
gitref: ${{ inputs.gitref }}
123-
testmo_run_url: https://neuralmagic.testmo.net/automation/runs/view/${{ inputs.testmo_run_id }}
124104
python: ${{ inputs.python }}
125105
whl: ${{ inputs.whl }}
126106
test_status: ${{ steps.test.outputs.status }}

.github/workflows/upload.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ on:
2020
description: "push asset to public pypi."
2121
type: boolean
2222
default: false
23-
testmo_run_id:
24-
description: "testmo run id"
25-
type: string
26-
default: ''
2723

2824
workflow_dispatch:
2925
inputs:
@@ -43,10 +39,6 @@ on:
4339
description: "push asset to public pypi."
4440
type: boolean
4541
default: false
46-
testmo_run_id:
47-
description: "testmo run id"
48-
type: string
49-
default: ''
5042

5143
jobs:
5244

@@ -69,14 +61,6 @@ jobs:
6961
with:
7062
python-version: 3.10.12
7163

72-
- name: complete testmo run
73-
uses: neuralmagic/nm-actions/actions/testmo-run-complete@v1.11.0
74-
if: (success() || failure()) && inputs.testmo_run_id != ''
75-
with:
76-
testmo_url: https://neuralmagic.testmo.net
77-
testmo_token: ${{ secrets.TESTMO_TEST_TOKEN }}
78-
testmo_run_id: ${{ inputs.testmo_run_id }}
79-
8064
# GCP
8165
- name: 'Authenticate to Google Cloud'
8266
id: auth-gcp

0 commit comments

Comments
 (0)