Skip to content

netbsd 9.3

netbsd 9.3 #19

Workflow file for this run

name: BSDs_v2
on: [push]
jobs:
BSDs_v2:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- name: freebsd
architecture: x86-64
version: '14.0'
pkginstall: pkg install -y p5-ExtUtils-MakeMaker
- name: openbsd
architecture: x86-64
version: '7.5'
pkginstall: echo no packages required
- name: openbsd
architecture: arm64
version: '7.5'
pkginstall: echo no packages required
- name: netbsd
architecture: x86-64
version: '9.3'
pkginstall: pkgin -y install perl || true
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Test on ${{ matrix.os.name }}
uses: cross-platform-actions/action@b2e15da1e667187766fff4945d20b98ac7055576
with:
operating_system: ${{ matrix.os.name }}
architecture: ${{ matrix.os.architecture }}
version: ${{ matrix.os.version }}
shell: bash
run: |
sudo ${{ matrix.os.pkginstall }}
/usr/sbin/pkg_info || true
curl -L https://cpanmin.us | sudo perl - --notest --installdeps --with-configure --with-develop .
perl Makefile.PL
make
prove -wlvmb t