Skip to content

Commit

Permalink
ci: s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Mar 8, 2024
1 parent 40b400b commit 71286fc
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/s390x.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: s390x

on:
push:
branches: [ develop ]

jobs:
aarch64_job:
name: s390x
runs-on: ubuntu-latest

steps:
- name: Get Sources
uses: actions/checkout@v4.1.1

- name: Run
uses: uraimo/run-on-arch-action@v2
id: runcmd
with:
arch: s390x
distro: ubuntu_latest
githubToken: ${{ github.token }}
install: |
apt-get update -q -y
apt-get install -q -y git cmake libjpeg-dev zlib1g zlib1g-dev
apt-get install -q -y gfortran g++ yacc flex libtool autotools-dev
run: |
echo ::set-output name=uname::$(uname -a)
mkdir build
cd build
cmake ..
ctest -D Experimental
- name: Get the output
# Echo the `uname` output parameter from the `runcmd` step
run: |
echo "The uname output was ${{ steps.runcmd.outputs.uname }}"

0 comments on commit 71286fc

Please sign in to comment.