We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f78a4b7 commit 8e85717Copy full SHA for 8e85717
.github/workflows/build.yml
@@ -65,13 +65,11 @@ jobs:
65
before_all: >-
66
pwsh -Command "
67
Write-Host 'Starting BEFORE_ALL script';
68
- $pwd = Get-Location;
69
- Write-Host 'Current directory:' $pwd;
70
Set-Location '{package}';
71
- $env:GEOS_DIR = '{package}/extern';
72
- python -c 'import sys, os; sys.path.append(\"utils\"); from GeosLibrary import GeosLibrary; GeosLibrary(\"3.6.5\").build(\"extern\", njobs=16)'
+ python -c 'import utils; utils.GeosLibrary(\"${env:GEOS_VERSION}\").build(\"${env:GEOS_DIR}\", njobs=2)'
73
"
74
environment: >-
+ GEOS_VERSION="3.6.5"
75
GEOS_DIR="D:/a/basemap/basemap/packages/basemap/extern"
76
PIP_PREFER_BINARY=1
77
PYTHONUNBUFFERED=1
0 commit comments