Skip to content

Commit c5afd07

Browse files
committed
.github/workflows/dist.yml: Use GITHUB_WORKSPACE
1 parent 8543491 commit c5afd07

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dist.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@ jobs:
176176
# Environment during wheel build
177177
# PYTHONUTF8=1 is for delvewheel
178178
CIBW_ENVIRONMENT: >-
179-
PATH="D:\\a\\sage\\sage\\sage-local\\bin;D:\\a\\sage\\sage\\build\\bin;$PATH"
180-
INCLUDE="D:\\a\\sage\\sage\\sage-local\\include;%INCLUDE%"
181-
LIB="D:\\a\\sage\\sage\\sage-local\\bin;D:\\a\\sage\\sage\\sage-local\\lib;%LIB%"
179+
PATH="${GITHUB_WORKSPACE}\\sage-local\\bin;${GITHUB_WORKSPACE}\\build\\bin;$PATH"
180+
INCLUDE="${GITHUB_WORKSPACE}\\sage-local\\include;%INCLUDE%"
181+
LIB="${GITHUB_WORKSPACE}\\sage-local\\bin;${GITHUB_WORKSPACE}\\sage-local\\lib;%LIB%"
182182
PKG_CONFIG_PATH=$(pwd)/prefix/lib/pkgconfig:$PKG_CONFIG_PATH
183183
ACLOCAL_PATH=/usr/share/aclocal
184-
PIP_FIND_LINKS=D:\\a\\sage\\sage\\wheelhouse' 'D:\\a\\sage\\sage\\dist
184+
PIP_FIND_LINKS=${GITHUB_WORKSPACE}\\wheelhouse' '${GITHUB_WORKSPACE}\\dist
185185
SAGE_NUM_THREADS=6
186186
PYTHONUTF8=1
187187
# Use 'build', not 'pip wheel'

0 commit comments

Comments
 (0)