Skip to content
Closed
Show file tree
Hide file tree
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
7 changes: 2 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
pre-commit:
name: ${{ matrix.os.name }} ${{ matrix.arch.name }} ${{ matrix.python.major_dot_minor }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix] }}
# Back to self hosted mac intel runners, which we have very few of
if: ${{ !(matrix.os.matrix == 'macos' && matrix.arch.matrix == 'intel') }}
timeout-minutes: 20
strategy:
fail-fast: false
Expand Down Expand Up @@ -50,11 +52,6 @@ jobs:
matrix: windows
arch:
matrix: arm
# Back to self hosted mac intel runners, which we have very few of
- os:
matrix: macos
arch:
matrix: intel

steps:
- name: Clean workspace
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/upload-pypi-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ permissions:

jobs:
mypy:
if: github.repository_owner == 'Chia-Network'
name: ${{ matrix.os.emoji }} ${{ matrix.arch.emoji }} ${{ matrix.check.name }} - ${{ matrix.os.name }} ${{ matrix.python.major_dot_minor }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix] }}
# Back to self hosted mac intel runners, which we have very few of
if: ${{ github.repository_owner == 'Chia-Network' && !(matrix.os.matrix == 'macos' && matrix.arch.matrix == 'intel') }}
timeout-minutes: 20
strategy:
fail-fast: false
Expand Down Expand Up @@ -74,11 +75,6 @@ jobs:
matrix: windows
arch:
matrix: arm
# Back to self hosted mac intel runners, which we have very few of
- os:
matrix: macos
arch:
matrix: intel

steps:
- uses: chia-network/actions/clean-workspace@main
Expand Down
Loading