Skip to content

Commit

Permalink
CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasz-grz committed Dec 19, 2024
1 parent a905948 commit 57c3b60
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,27 @@ jobs:
fetch-depth: 0
- run: docker build -t neptun-runner:0.0.1 .
- run: cargo xtask perf --base main

xray-tests:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: Install tcpdump
run: |
sudo apt-get update
sudo apt-get install -y tcpdump
- name: Setup pipenv
working-directory: xray
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install
- name: Execute xray
working-directory: xray
run: pipenv run python run.py --ascii --save-chart
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: xray-results
path: xray/results/*.png

0 comments on commit 57c3b60

Please sign in to comment.