File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,20 +26,35 @@ jobs:
2626 python ./test/perf/node_utils.py ping ./test/perf/topology-random.yaml --count 100 --validate 0.1
2727 kill `pidof python`
2828 rm -Rf /tmp/receptor
29+ - name : Upload artifact for Perf - Random
30+ uses : actions/upload-artifact@v1
31+ with :
32+ name : RandomPerfTest
33+ path : results.yaml
2934 - name : Perform perf test 2 - Flat
3035 run : |
3136 python ./test/perf/node_utils.py file ./test/perf/topology-flat.yaml&
3237 sleep 10
3338 python ./test/perf/node_utils.py ping ./test/perf/topology-flat.yaml --count 100 --validate 0.1
3439 kill `pidof python`
3540 rm -Rf /tmp/receptor
41+ - name : Upload artifact for Perf - Flat
42+ uses : actions/upload-artifact@v1
43+ with :
44+ name : FlatPerfTest
45+ path : results.yaml
3646 - name : Perform perf test 3 - Tree
3747 run : |
3848 python ./test/perf/node_utils.py file ./test/perf/topology-tree.yaml&
3949 sleep 10
4050 python ./test/perf/node_utils.py ping ./test/perf/topology-tree.yaml --count 100 --validate 0.1
4151 kill `pidof python`
4252 rm -Rf /tmp/receptor
53+ - name : Upload artifact for Perf - Tree
54+ uses : actions/upload-artifact@v1
55+ with :
56+ name : TreePerfTest
57+ path : results.yaml
4358 unit :
4459 name : Unit Tests
4560 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments