Skip to content

Commit 68d55b6

Browse files
authored
Test Arm64 Windows using released compiler (#121)
Until today, we only had nightlies to test against.
1 parent eb2fb0e commit 68d55b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ jobs:
9696
- uses: actions/[email protected]
9797
- name: Test against recent ponyc release on Windows
9898
run: |
99-
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies/raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
99+
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
100100
Expand-Archive -Force -Path C:\ponyc.zip -DestinationPath C:\ponyc;
101-
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies/raw/versions/latest/corral-arm64-pc-windows-msvc.zip -OutFile C:\corral.zip;
101+
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/corral-arm64-pc-windows-msvc.zip -OutFile C:\corral.zip;
102102
Expand-Archive -Force -Path C:\corral.zip -DestinationPath C:\ponyc;
103103
$env:PATH = 'C:\ponyc\bin;' + $env:PATH;
104104
.\make.ps1 -Command test 2>&1;

0 commit comments

Comments
 (0)