Skip to content

ci: add netbsd actions #12

ci: add netbsd actions

ci: add netbsd actions #12

Workflow file for this run

name: armv7 lin
on: [push, pull_request]
jobs:
armv7:
# The host should always be Linux
runs-on: ubuntu-latest
name: Build on ubuntu-latest armv7
steps:
- uses: actions/checkout@v4.1.1
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: armv7
distro: ubuntu_latest
install: |
apt-get update -q -y
apt-get install -q -y git
apt-get install -q -y cmake
run: |
echo ::set-output name=uname::$(uname -a)
mkdir build
cd build
cmake -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF ..
make
ctest --timeout 3000
- name: Get the output
# Echo the `uname` output parameter from the `runcmd` step
run: |
echo "The uname output was ${{ steps.runcmd.outputs.uname }}"