[Debug] Test s390x
environment
#3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
apt install tree | |
# Double-check we are in the appropriate environment | |
uname -a | |
# check where we are and what we have | |
pwd | |
tree . | |
echo "::endgroup::" | |
echo "::group::Install rust environment" | |
apt install cargo | |
echo "::endgroup::" | |
echo "::group::Run cargo test" | |
# TODO: Help me with this section | |
cargo test --workspace --verbose | |
echo "::endgroup::" |