Skip to content

ci: use 7.4

ci: use 7.4 #1

Workflow file for this run

name: r
on:
push:
branches: [main]
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/checkout@v4
- 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 git
<<<<<<< HEAD:.github/workflows/r.yml

Check failure on line 36 in .github/workflows/r.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/r.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
=======
git clone https://github.com/hyoklee/h4
cd hdf4
>>>>>>> ff5e551f3bb2a9c1c0d7b12d697a53a5eff04ef0:.github/workflows/openbsd.yml
sudo pkg_add cmake
sudo pkg_add jpeg
mkdir build
cd build
cmake ..
make
make test