Skip to content

Commit 97407e3

Browse files
committed
try fix
1 parent e42ef05 commit 97407e3

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

.github/workflows/test-single.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,6 @@ jobs:
118118
matrix: windows
119119
configuration:
120120
name: core.full_node
121-
# TODO: skipping macos-15-intel timelord cases until fixed
122-
# https://github.com/Chia-Network/chiavdf/pull/268
123-
- os:
124-
matrix: macos-intel
125-
configuration:
126-
install_timelord: true
127121
- python:
128122
exclude_from:
129123
${{ inputs.matrix_mode }}: True

install-timelord.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,17 @@ else
9999
echo "apt-get install libgmp-dev libboost-python-dev $PYTHON_DEV_DEPENDENCY libboost-system-dev build-essential -y"
100100
sudo apt-get install libgmp-dev libboost-python-dev "$PYTHON_DEV_DEPENDENCY" libboost-system-dev build-essential -y
101101
echo "Installing chiavdf from source on Ubuntu/Debian"
102-
echo venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
103-
venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
102+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
103+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
104104
symlink_vdf_bench "$PYTHON_VERSION"
105105
elif [ -e venv/bin/python ] && test "$RHEL_BASED"; then
106106
echo "Installing chiavdf dependencies on RedHat/CentOS/Fedora"
107107
# Install remaining needed development tools - assumes venv and prior run of install.sh
108108
echo "$yumcmd"
109109
${yumcmd}
110110
echo "Installing chiavdf from source on RedHat/CentOS/Fedora"
111-
echo venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
112-
venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
111+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
112+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
113113
symlink_vdf_bench "$PYTHON_VERSION"
114114
elif [ -e venv/bin/python ] && test "$MACOS"; then
115115
echo "Installing chiavdf dependencies for MacOS."
@@ -124,14 +124,14 @@ else
124124
export CPPFLAGS="-I/usr/local/opt/[email protected]/include"
125125
echo "Installing chiavdf from source."
126126
# User needs to provide required packages
127-
echo venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
128-
venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
127+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
128+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
129129
symlink_vdf_bench "$PYTHON_VERSION"
130130
elif [ -e venv/bin/python ]; then
131131
echo "Installing chiavdf from source."
132132
# User needs to provide required packages
133-
echo venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
134-
venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"
133+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
134+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
135135
symlink_vdf_bench "$PYTHON_VERSION"
136136
else
137137
echo "No venv created yet, please run install.sh."

0 commit comments

Comments
 (0)