File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 - name : MSBuild of solution
3636 run : msbuild PythonScript.sln /m /verbosity:minimal /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}"
3737
38+ - name : Download Additional Scripts (PyPadPlusPlus & pyscFilteredViewer)
39+ shell : pwsh
40+ run : |
41+ $scriptsDir = "scripts"
42+ if (!(Test-Path $scriptsDir)) { mkdir $scriptsDir }
43+
44+ Write-Host "Cloning PyPadPlusPlus..."
45+ git clone --depth 1 https://github.com/bitagoras/PyPadPlusPlus tmp_pypad
46+
47+ if (Test-Path "tmp_pypad\demo") {
48+ Write-Host "Removing demo folder..."
49+ Remove-Item -Path "tmp_pypad\demo" -Recurse -Force
50+ Remove-Item -Path "tmp_pypad\.git" -Recurse -Force
51+ }
52+
53+ mkdir "$scriptsDir\PyPadPlusPlus" -ErrorAction SilentlyContinue
54+ Copy-Item -Path "tmp_pypad\*" -Destination "$scriptsDir\PyPadPlusPlus\" -Recurse -Force
55+
56+ Write-Host "Cloning pyscFilteredViewer..."
57+ git clone --depth 1 https://github.com/pryrt/pyscFilteredViewer tmp_filteredviewer
58+
59+ Copy-Item -Path "tmp_filteredviewer\pyscFilteredViewer" -Destination "$scriptsDir\" -Recurse -Force
60+
61+ Remove-Item -Path "tmp_pypad", "tmp_filteredviewer" -Recurse -Force
62+
3863 - name : Build docs
3964 if : matrix.build_configuration == 'Release'
4065 working-directory : docs
You can’t perform that action at this time.
0 commit comments