Skip to content

Commit aca8b69

Browse files
authored
Switch CI from nightly to release (#168)
1 parent 9e4da54 commit aca8b69

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/pony-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Lint Pony source
1818
runs-on: ubuntu-latest
1919
container:
20-
image: ghcr.io/ponylang/shared-docker-ci-standard-builder:nightly
20+
image: ghcr.io/ponylang/shared-docker-ci-standard-builder:release
2121
steps:
2222
- uses: actions/checkout@v6.0.2
2323
- name: Lint

.github/workflows/pr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
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
@@ -31,7 +31,7 @@ jobs:
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
@@ -41,7 +41,7 @@ jobs:
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
@@ -51,7 +51,7 @@ jobs:
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
@@ -61,7 +61,7 @@ jobs:
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
@@ -71,7 +71,7 @@ jobs:
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
@@ -96,9 +96,9 @@ jobs:
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

Comments
 (0)