Skip to content

Commit

Permalink
To the moon!
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlabelle authored Nov 8, 2023
1 parent 3aa38a5 commit 2e605b6
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,29 @@ jobs:
- name: Append to path
run: |
$RTLPath = cygpath -w ${{ github.workspace }}/BinaryCache/Developer/Library/Developer/Platforms/Windows.platform/Developer/SDKs/Windows.sdk/usr/bin
for ($i = 10; $i -le 20; $i += 1) {
for ($i = 10; $i -le 100; $i += 1) {
Add-Content ${env:GITHUB_PATH} "${RTLPath}$i"
}
- name: Print path
run: Write-Output ${env:Path}

- name: Append to path
run: |
$RTLPath = cygpath -w ${{ github.workspace }}/BinaryCache/Developer/Library/Developer/Platforms/Windows.platform/Developer/SDKs/Windows.sdk/usr/bin
for ($i = 100; $i -le 1000; $i += 1) {
Add-Content ${env:GITHUB_PATH} "${RTLPath}$i"
}
- name: Print path
run: Write-Output ${env:Path}

- name: Append to path
run: |
$RTLPath = cygpath -w ${{ github.workspace }}/BinaryCache/Developer/Library/Developer/Platforms/Windows.platform/Developer/SDKs/Windows.sdk/usr/bin
for ($i = 1000; $i -le 10000; $i += 1) {
Add-Content ${env:GITHUB_PATH} "${RTLPath}$i"
}
- name: Print path
run: Write-Output ${env:Path}

0 comments on commit 2e605b6

Please sign in to comment.