Skip to content

Commit

Permalink
ci: tc
Browse files Browse the repository at this point in the history
  • Loading branch information
msune committed Oct 7, 2024
1 parent 91c1d1e commit 56a34e7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,21 @@ jobs:
minikube kubectl -- get pods -o wide
( make VERBOSE=1 _check_affinity && ( echo "FAILED: negative test succeeded with cni='${CNI}' nodes='${NODES}' when it should have failed!" && exit 1 ) ) || true
- name: "Performance test nodes='${{ matrix.combination.nodes }}' cni='${{ matrix.combination.cni }}'..."
env:
CNI: ${{matrix.combination.cni}}
NODES: ${{matrix.combination.nodes}}
run: |
cd sfunnel/test/cni/
make VERBOSE=1 _check_perf
#Create the markdown report (TODO improve txt)
echo "# Performance report" >> $GITHUB_OUTPUT
echo "CNI: ${CNI}" >> $GITHUB_OUTPUT
echo "Number of nodes: ${NODES}" >> $GITHUB_OUTPUT
echo "## Results" >> $GITHUB_OUTPUT
cat .last_perf_report.txt >> $GITHUB_OUTPUT
docker_build_test_publish:
needs: [check_unit, check_cni_example]
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 56a34e7

Please sign in to comment.