Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,35 @@ jobs:
python ./test/perf/node_utils.py ping ./test/perf/topology-random.yaml --count 100 --validate 0.1
kill `pidof python`
rm -Rf /tmp/receptor
- name: Upload artifact for Perf - Random
uses: actions/upload-artifact@v1
with:
name: RandomPerfTest
path: results.yaml
- name: Perform perf test 2 - Flat
run: |
python ./test/perf/node_utils.py file ./test/perf/topology-flat.yaml&
sleep 10
python ./test/perf/node_utils.py ping ./test/perf/topology-flat.yaml --count 100 --validate 0.1
kill `pidof python`
rm -Rf /tmp/receptor
- name: Upload artifact for Perf - Flat
uses: actions/upload-artifact@v1
with:
name: FlatPerfTest
path: results.yaml
- name: Perform perf test 3 - Tree
run: |
python ./test/perf/node_utils.py file ./test/perf/topology-tree.yaml&
sleep 10
python ./test/perf/node_utils.py ping ./test/perf/topology-tree.yaml --count 100 --validate 0.1
kill `pidof python`
rm -Rf /tmp/receptor
- name: Upload artifact for Perf - Tree
uses: actions/upload-artifact@v1
with:
name: TreePerfTest
path: results.yaml
unit:
name: Unit Tests
runs-on: ubuntu-latest
Expand Down