@@ -212,23 +212,23 @@ jobs:
212212 - name : Checkout
213213 uses : actions/checkout@v6.0.2
214214 - name : Pull Docker image
215- run : docker pull ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.0:nightly
216- - name : Test with most recent ponyc nightly
215+ run : docker pull ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.0:release
216+ - name : Test with most recent ponyc release
217217 run : |
218218 docker run --rm \
219219 -v ${{ github.workspace }}:/root/project \
220220 -w /root/project \
221- ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.0:nightly \
221+ ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.0:release \
222222 make test
223223
224224 x86-64-linux :
225225 name : x86-64 Linux tests
226226 runs-on : ubuntu-latest
227227 container :
228- image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.0:nightly
228+ image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.0:release
229229 steps :
230230 - uses : actions/checkout@v6.0.2
231- - name : Test with the most recent ponyc nightly
231+ - name : Test with the most recent ponyc release
232232 run : make test
233233
234234 x86-64-macos :
@@ -237,8 +237,8 @@ jobs:
237237 steps :
238238 - uses : actions/checkout@v6.0.2
239239 - name : install pony tools
240- run : bash .ci-scripts/macos-x86-install-pony-tools.bash nightly
241- - name : Test with the most recent ponyc nightly
240+ run : bash .ci-scripts/macos-x86-install-pony-tools.bash release
241+ - name : Test with the most recent ponyc release
242242 run : |
243243 export PATH="/tmp/corral/bin:/tmp/ponyc/bin/:$PATH"
244244 make test
@@ -249,8 +249,8 @@ jobs:
249249 steps :
250250 - uses : actions/checkout@v6.0.2
251251 - name : install pony tools
252- run : bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
253- - name : Test with the most recent ponyc nightly
252+ run : bash .ci-scripts/macos-arm64-install-pony-tools.bash release
253+ - name : Test with the most recent ponyc release
254254 run : |
255255 export PATH="/tmp/corral/bin:/tmp/ponyc/bin/:$PATH"
256256 make test
@@ -260,11 +260,11 @@ jobs:
260260 runs-on : windows-2025
261261 steps :
262262 - uses : actions/checkout@v6.0.2
263- - name : Test with most recent ponyc nightly
263+ - name : Test with most recent ponyc release
264264 run : |
265- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
265+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
266266 Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
267- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/corral-x86-64-pc-windows-msvc.zip -OutFile C:\corral.zip;
267+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/corral-x86-64-pc-windows-msvc.zip -OutFile C:\corral.zip;
268268 Expand-Archive -Path C:\corral.zip -DestinationPath C:\ponyc;
269269 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
270270 .\make.ps1 -Command fetch 2>&1
@@ -276,11 +276,11 @@ jobs:
276276 runs-on : windows-11-arm
277277 steps :
278278 - uses : actions/checkout@v6.0.2
279- - name : Test with most recent ponyc nightly
279+ - name : Test with most recent ponyc release
280280 run : |
281- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
281+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
282282 Expand-Archive -Force -Path C:\ponyc.zip -DestinationPath C:\ponyc;
283- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/corral-arm64-pc-windows-msvc.zip -OutFile C:\corral.zip;
283+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/corral-arm64-pc-windows-msvc.zip -OutFile C:\corral.zip;
284284 Expand-Archive -Force -Path C:\corral.zip -DestinationPath C:\ponyc;
285285 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
286286 .\make.ps1 -Command fetch 2>&1
0 commit comments