Skip to content

Commit

Permalink
ci: install hatch in own step and set timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
P403n1x87 committed Sep 10, 2023
1 parent d1dd338 commit 1b8320c
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ jobs:
sudo apt-get update -y
sudo apt-get install -y binutils binutils-common
addr2line -V
pip install hatch
- name: Run tests
timeout-minutes: 30
run: |
cd $GITHUB_WORKSPACE/main
export PATH="$GITHUB_WORKSPACE/austin/src:$PATH"
pip install hatch
hatch -e "tests.py${{ matrix.python-version }}" run tests
- name: Publish coverage metrics
run: |
cd $GITHUB_WORKSPACE/main
Expand Down Expand Up @@ -96,11 +97,15 @@ jobs:
codesign --remove-signature /Library/Frameworks/Python.framework/Versions/${{ matrix.python-version }}/bin/python3 || true
codesign --remove-signature /Library/Frameworks/Python.framework/Versions/${{ matrix.python-version }}/Resources/Python.app/Contents/MacOS/Python || true
- name: Install dependencies
run: |
pip install hatch
- name: Run tests
timeout-minutes: 30
run: |
cd $GITHUB_WORKSPACE/main
export PATH="$GITHUB_WORKSPACE/austin/src:$PATH"
pip install hatch
sudo hatch -e "tests.py${{ matrix.python-version }}" run tests
tests-win:
Expand All @@ -127,14 +132,18 @@ jobs:
ref: devel
path: austin

- name: Compile Austin on Windows
- name: Compile Austin
run: |
cd $env:GITHUB_WORKSPACE/austin
gcc.exe -O3 -o src/austin.exe src/*.c -lpsapi -lntdll -Wall -Os -s
- name: Run tests on Windows
- name: Install dependencies
run: |
pip install hatch
- name: Run tests
timeout-minutes: 30
run: |
cd $env:GITHUB_WORKSPACE/main
$env:PATH="$env:GITHUB_WORKSPACE\austin\src;$env:PATH"
pip install hatch
hatch -e "tests.py${{ matrix.python-version }}" run tests

0 comments on commit 1b8320c

Please sign in to comment.