@@ -21,10 +21,10 @@ jobs:
2121 name : x86_64 Linux
2222 runs-on : ubuntu-latest
2323 container :
24- image : ghcr.io/ponylang/shared-docker-ci-standard-builder:nightly
24+ image : ghcr.io/ponylang/shared-docker-ci-standard-builder:release
2525 steps :
2626 - uses : actions/checkout@v6.0.2
27- - name : Test with most recent ponyc nightly
27+ - name : Test with most recent ponyc release
2828 run : make test
2929
3030 # Currently, GitHub actions supplied by GH like checkout and cache do not work
@@ -43,23 +43,23 @@ jobs:
4343 - name : Checkout
4444 uses : actions/checkout@v6.0.2
4545 - name : Pull Docker image
46- run : docker pull ghcr.io/ponylang/shared-docker-ci-standard-builder:nightly
47- - name : Test with most recent ponyc nightly
46+ run : docker pull ghcr.io/ponylang/shared-docker-ci-standard-builder:release
47+ - name : Test with most recent ponyc release
4848 run : |
4949 docker run --rm \
5050 -v ${{ github.workspace }}:/root/project \
5151 -w /root/project \
52- ghcr.io/ponylang/shared-docker-ci-standard-builder:nightly \
52+ ghcr.io/ponylang/shared-docker-ci-standard-builder:release \
5353 make test
5454
5555 x86_windows :
5656 name : x86_64 Windows
5757 runs-on : windows-2025
5858 steps :
5959 - uses : actions/checkout@v6.0.2
60- - name : Test with most recent ponyc nightly
60+ - name : Test with most recent ponyc release
6161 run : |
62- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
62+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
6363 Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
6464 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
6565 .\make.ps1 -Command test 2>&1
6969 runs-on : windows-11-arm
7070 steps :
7171 - uses : actions/checkout@v6.0.2
72- - name : Test with most recent ponyc nightly
72+ - name : Test with most recent ponyc release
7373 run : |
74- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
74+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
7575 Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
7676 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
7777 .\make.ps1 -Command test 2>&1
@@ -82,10 +82,10 @@ jobs:
8282 steps :
8383 - uses : actions/checkout@v6.0.2
8484 - name : install ponyc
85- run : bash .ci-scripts/macos-x86-install-pony-tools.bash nightly
85+ run : bash .ci-scripts/macos-x86-install-pony-tools.bash release
8686 - name : brew install dependencies
8787 run : brew install coreutils
88- - name : Test with most recent ponyc nightly
88+ - name : Test with most recent ponyc release
8989 run : |
9090 export PATH="/tmp/ponyc/bin/:$PATH"
9191 make test
@@ -96,10 +96,10 @@ jobs:
9696 steps :
9797 - uses : actions/checkout@v6.0.2
9898 - name : install ponyc
99- run : bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
99+ run : bash .ci-scripts/macos-arm64-install-pony-tools.bash release
100100 - name : brew install dependencies
101101 run : brew install coreutils
102- - name : Test with most recent ponyc nightly
102+ - name : Test with most recent ponyc release
103103 run : |
104104 export PATH="/tmp/ponyc/bin/:$PATH"
105105 make test
0 commit comments