Skip to content

docs: enable latex

docs: enable latex #99

Workflow file for this run

name: s390x lin f
on:
push:
branches:
- develop
jobs:
s390x_job:
name: s390x lin f
runs-on: ubuntu-latest
steps:
- name: Get Sources
uses: actions/checkout@v4
- 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 \
-DBUILDNAME:STRING=f \
-DCTEST_DROP_SITE_INIT:STRING="my.cdash.org" \
-DHDF5_BUILD_FORTRAN:BOOL=ON \
-DBUILD_SHARED_LIBS:BOOL=OFF \
-DSITE:STRING=s390x \
..
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 }}"