Skip to content

[Debug] Test s390x environment #5

[Debug] Test s390x environment

[Debug] Test s390x environment #5

Workflow file for this run

on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
with:
arch: s390x
distro: ubuntu_latest
run: |
echo "::group::Debug stuff"
# Double-check we are in the appropriate environment
uname -a
echo "::endgroup::"
echo "::group::Install rust environment"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y
rustup toolchain install stable
echo "::endgroup::"
echo "::group::Run cargo test"
# TODO: Help me with this section
cargo test --workspace --verbose
echo "::endgroup::"