ci(intel): update version to 2024.1 #87
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: arm64 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: arm64 | |
version: '7.4' | |
host: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: ${{ matrix.os.name }} | |
uses: cross-platform-actions/action@v0.23.0 | |
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 |