We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4f539 commit 546fed1Copy full SHA for 546fed1
.github/workflows/build-test-windows.yml
@@ -25,6 +25,21 @@ jobs:
25
with:
26
python-version: '3.9'
27
28
+ - name: Copy setup.ps1 to debug folder
29
+ run: |
30
+ if (!(Test-Path -Path "C:\GitHubActionsRunner\debug")) {
31
+ New-Item -ItemType Directory -Path "C:\GitHubActionsRunner\debug"
32
+ }
33
+
34
+ $tempFolder = "C:\GitHubActionsRunner\_work\_temp"
35
+ $debugFolder = "C:\GitHubActionsRunner\debug"
36
37
+ if (Test-Path -Path "$tempFolder") {
38
+ Get-ChildItem -Path $tempFolder -Recurse -Filter setup.ps1 | ForEach-Object {
39
+ Copy-Item -Path $_.FullName -Destination $debugFolder -Force
40
41
42
43
- name: Build Triton
44
run: |
45
cd python
0 commit comments