Merge pull request #202 from hyoklee/total-solar-eclipse-2024 #291
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
name: auto | |
on: | |
push: | |
branches: develop | |
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: openbsd | |
architecture: x86_64 | |
version: '7.4' | |
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_add autoconf-2.71 | |
sudo pkg_add automake-1.16.5 | |
sudo pkg_add libtool-2.4.2p2 | |
export AUTOCONF_VERSION=2.71 | |
export AUTOMAKE_VERSION=1.16 | |
ls /usr/local/bin/ | |
export HDF5_LIBTOOL=/usr/local/bin/libtoolize | |
./autogen.sh | |
./configure | |
make | |
make check |