Skip to content
Draft
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
18 changes: 18 additions & 0 deletions .github/workflows/test-setup-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
test:
name: ${{ matrix.os.name }} ${{ matrix.arch.name }} ${{ matrix.environment.name }} ${{ matrix.python.name }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix][matrix.environment.matrix] }}
container: ${{ matrix.arch.container }}
timeout-minutes: 5
strategy:
fail-fast: false
Expand All @@ -41,6 +42,8 @@ jobs:
runs-on:
arm:
chia: [Linux, ARM64]
benchmark:
chia: benchmark
intel:
github: [ubuntu-latest]
- name: Windows
Expand Down Expand Up @@ -84,6 +87,9 @@ jobs:
matrix: arm
- name: Intel
matrix: intel
- name: Benchmark
matrix: benchmark
container: chianetwork/ubuntu-22.04-builder:latest
environment:
- name: Chia
matrix: chia
Expand All @@ -110,6 +116,18 @@ jobs:
matrix: intel
environment:
matrix: chia
- os:
matrix: windows
arch:
matrix: benchmark
- os:
matrix: macos
arch:
matrix: benchmark
- environment:
matrix: github
arch:
matrix: benchmark

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 8 additions & 0 deletions setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,14 @@ runs:
ls -l "$PYENV_ROOT/bin" || true
exit 1
fi

echo " ==== running: git --version" || true
git --version

echo " ==== running: git remote" || true
git -C "$PYENV_ROOT" remote --verbose

echo " ==== running: pyenv update" || true
pyenv update

FULL_PY_VERSION=$(pyenv install --list | grep "^ ${{ inputs.python-version }}" | grep -v 'dev' | tail -n 1)
Expand Down