Skip to content

[Debug] Test s390x environment #11

[Debug] Test s390x environment

[Debug] Test s390x environment #11

Workflow file for this run

on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: LecrisUT/run-on-arch-action@fix/arch-flag
with:
arch: s390x
base_image: "s390x/fedora:latest"
run: |
echo "::group::Debug stuff"
# Double-check we are in the appropriate environment
uname -a
# Debug where we are
pwd
dnf install -y tree
tree .
echo "::endgroup::"
echo "::group::Install rust environment"
dnf install -y cargo
echo "::endgroup::"
echo "::group::Run cargo test"
# TODO: Help me with this section
cargo test --workspace --verbose
echo "::endgroup::"