2121 name : Lint Pony code
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
2727 - name : Lint
3131 name : LibreSSL 3.x with most recent ponyc release
3232 runs-on : ubuntu-latest
3333 container :
34- image : ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.9.2:latest
34+ image : ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.9.2:release
3535 steps :
3636 - uses : actions/checkout@v6.0.2
3737 - name : Test
4141 name : LibreSSL 4.x with most recent ponyc release
4242 runs-on : ubuntu-latest
4343 container :
44- image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.1:nightly
44+ image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.1:release
4545 steps :
4646 - uses : actions/checkout@v6.0.2
4747 - name : Test
5151 name : OpenSSL 1.x with most recent ponyc release
5252 runs-on : ubuntu-latest
5353 container :
54- image : ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w:latest
54+ image : ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w:release
5555 steps :
5656 - uses : actions/checkout@v6.0.2
5757 - name : Test
6161 name : OpenSSL 3.x with most recent ponyc release
6262 runs-on : ubuntu-latest
6363 container :
64- image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-3.6.2:nightly
64+ image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-3.6.2:release
6565 steps :
6666 - uses : actions/checkout@v6.0.2
6767 - name : Test
7171 name : OpenSSL 4.x with most recent ponyc release
7272 runs-on : ubuntu-latest
7373 container :
74- image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-4.0.0:nightly
74+ image : ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-4.0.0:release
7575 steps :
7676 - uses : actions/checkout@v6.0.2
7777 - name : Test
9696 run : .ci-scripts\windows-install-libressl.ps1
9797 - name : Test with most recent ponyc release
9898 run : |
99- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
99+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-x86-64-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-x86-64-pc-windows-msvc.zip -OutFile C:\corral.zip;
101+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/corral-x86-64-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;
@@ -123,9 +123,9 @@ jobs:
123123 run : .ci-scripts\windows-install-libressl.ps1
124124 - name : Test with most recent ponyc release
125125 run : |
126- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
126+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/ponyc-arm64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
127127 Expand-Archive -Force -Path C:\ponyc.zip -DestinationPath C:\ponyc;
128- Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/nightlies /raw/versions/latest/corral-arm64-pc-windows-msvc.zip -OutFile C:\corral.zip;
128+ Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases /raw/versions/latest/corral-arm64-pc-windows-msvc.zip -OutFile C:\corral.zip;
129129 Expand-Archive -Force -Path C:\corral.zip -DestinationPath C:\ponyc;
130130 $env:PATH = 'C:\ponyc\bin;' + $env:PATH;
131131 .\make.ps1 -Command test 2>&1;
0 commit comments