Skip to content

Merge branch 'HDFGroup:develop' into develop #71

Merge branch 'HDFGroup:develop' into develop

Merge branch 'HDFGroup:develop' into develop #71

Workflow file for this run

name: fbsd
on: [push, pull_request]
jobs:
test: # make sure the action works on a clean machine without building
name: ${{ matrix.os.name }} ${{ matrix.os.architecture }} ${{ matrix.os.version }} on ${{ matrix.os.host }}
runs-on: ${{ matrix.os.host }}
strategy:
fail-fast: false
matrix:
os:
- name: freebsd
architecture: x86-64
version: '14.0'
host: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: ${{ matrix.os.name }}
uses: cross-platform-actions/[email protected]
env:
FOO: A
BAR: B
with:
environment_variables: FOO BAR
operating_system: ${{ matrix.os.name }}
architecture: ${{ matrix.os.architecture }}
version: '${{ matrix.os.version }}'
shell: bash
run: |
sudo pkg install -y git
sudo pkg install -y cmake
mkdir build
cd build
cmake \
-D CTEST_DROP_SITE_INIT:STRING="my.cdash.org" \
-D SITE:STRING=fbsd ..
ctest -D Experimental