forked from HDFGroup/hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
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/[email protected] | ||
|
||
- 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 }}" |