Skip to content

Commit

Permalink
Update check.yml
Browse files Browse the repository at this point in the history
Adding a command to list CPU details on macOS runners. Hopefully this will illuminate why their runners intermittently fail due to incompatible CPU instruction sets
  • Loading branch information
AlexTate authored Dec 10, 2023
1 parent d5ec428 commit cb64a0c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- 3.9
- 3.8
steps:
- name: Print agent CPU info
if: runner.os == 'macOS'
run: sysctl -a machdep.cpu
- name: Setup Python
uses: actions/setup-python@v4
with:
Expand All @@ -46,4 +49,4 @@ jobs:
run: tox --skip-pkg-install
env:
CI_RUN: "yes"
DIFF_AGAINST: HEAD
DIFF_AGAINST: HEAD

0 comments on commit cb64a0c

Please sign in to comment.