Skip to content

Commit e65d492

Browse files
committed
[TRY RUN] Upgrade all CI OS versions
1 parent 54c8837 commit e65d492

File tree

21 files changed

+32
-31
lines changed

21 files changed

+32
-31
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
name: Test
5555
runs-on: ${{ matrix.target.os }}
5656
strategy:
57+
fail-fast: false
5758
matrix:
5859
profile:
5960
- dev
@@ -109,26 +110,26 @@ jobs:
109110

110111
# macOS targets
111112
- tuple: x86_64-apple-darwin
112-
os: macos-13
113+
os: macos-15-large
113114
- tuple: x86_64-apple-ios-macabi
114-
os: macos-13
115+
os: macos-15-large
115116
- tuple: aarch64-apple-darwin
116-
os: macos-latest
117+
os: macos-15
117118
- tuple: aarch64-apple-ios-macabi
118-
os: macos-latest
119+
os: macos-15
119120
# FIXME: gh-actions build environment doesn't have linker support
120121
# - tuple: i686-apple-darwin
121122
# os: macos-13
122123

123124
# Windows targets
124125
- tuple: x86_64-pc-windows-msvc
125-
os: windows-latest
126+
os: windows-2025
126127
- tuple: i686-pc-windows-msvc
127-
os: windows-latest
128+
os: windows-2025
128129
- tuple: aarch64-pc-windows-msvc
129-
os: windows-latest
130+
os: windows-2025
130131
- tuple: x86_64-pc-windows-gnu
131-
os: windows-latest
132+
os: windows-2025
132133
# - tuple: i686-pc-windows-gnu
133134
# os: windows-latest
134135

@@ -167,15 +168,15 @@ jobs:
167168
disable_assert_instr: true
168169
- target:
169170
tuple: aarch64-apple-darwin
170-
os: macos-latest
171+
os: macos-15
171172
norun: true # https://github.com/rust-lang/stdarch/issues/1206
172173
- target:
173174
tuple: aarch64-apple-ios-macabi
174-
os: macos-latest
175+
os: macos-15
175176
norun: true # https://github.com/rust-lang/stdarch/issues/1206
176177
- target:
177178
tuple: aarch64-pc-windows-msvc
178-
os: windows-latest
179+
os: windows-2025
179180
norun: true
180181

181182
steps:

ci/docker/aarch64-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc \
44
g++ \

ci/docker/aarch64_be-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc \

ci/docker/arm-unknown-linux-gnueabihf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc \
44
ca-certificates \

ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc \
44
g++ \

ci/docker/i586-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc-multilib \
44
libc6-dev \

ci/docker/i686-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22
RUN apt-get update && apt-get install -y --no-install-recommends \
33
gcc-multilib \
44
libc6-dev \

ci/docker/loongarch64-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22

33
RUN apt-get update && \
44
apt-get install -y --no-install-recommends \

ci/docker/mips-unknown-linux-gnu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc libc6-dev qemu-user ca-certificates \

ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:25.04
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc libc6-dev qemu-user ca-certificates \

0 commit comments

Comments
 (0)