Skip to content

Commit

Permalink
[Temp] Create a temporary s390x environment
Browse files Browse the repository at this point in the history
  • Loading branch information
LecrisUT committed Oct 9, 2024
1 parent 30ffb42 commit 1298941
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/s390x.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
pull_request:

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Using my fork because there seems to be a bug where it couldn't find `s390x/fedora:latest`
- uses: LecrisUT/run-on-arch-action@fix/arch-flag
with:
distro: none
arch: s390x
base_image: "s390x/fedora:latest"
run: |
echo "::group::Debug stuff"
# Double-check we are in the appropriate environment
uname -a
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::"

0 comments on commit 1298941

Please sign in to comment.