Skip to content

Commit

Permalink
Fix Solaris CI
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
josephlr committed May 13, 2021
1 parent 2471686 commit ff72837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
strategy:
matrix:
target: [
x86_64-sun-solaris,
sparcv9-sun-solaris,
x86_64-unknown-netbsd,
]
steps:
Expand All @@ -184,7 +184,7 @@ jobs:
tar -C /tmp -xzf /tmp/binaries.tar.gz
mv /tmp/cross ~/.cargo/bin
- name: Build Tests
run: cross test --no-run --target=${{ matrix.target }} --features=std
run: cross test --target=${{ matrix.target }} --features=std

web-tests:
name: Web tests
Expand Down

0 comments on commit ff72837

Please sign in to comment.