Skip to content

Commit ff72837

Browse files
committed
Fix Solaris CI
The new target is called `x86_64-pc-solaris`, but `cross` doesn't support that yet, so just use `sparcv9-sun-solaris`. See the following issues for more info: rust-lang/rust#85098 rust-lang/rust#82216 Signed-off-by: Joe Richey <joerichey@google.com>
1 parent 2471686 commit ff72837

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
strategy:
167167
matrix:
168168
target: [
169-
x86_64-sun-solaris,
169+
sparcv9-sun-solaris,
170170
x86_64-unknown-netbsd,
171171
]
172172
steps:
@@ -184,7 +184,7 @@ jobs:
184184
tar -C /tmp -xzf /tmp/binaries.tar.gz
185185
mv /tmp/cross ~/.cargo/bin
186186
- name: Build Tests
187-
run: cross test --no-run --target=${{ matrix.target }} --features=std
187+
run: cross test --target=${{ matrix.target }} --features=std
188188

189189
web-tests:
190190
name: Web tests

0 commit comments

Comments
 (0)