summaryrefslogtreecommitdiffstats
path: root/.github/workflows/NetBSD.yml
blob: 0bb0924ad887c7a5cffe298fe9efe91d2c0012f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: NetBSD
on:
  push:
    branches:
      - '*'
    paths:
      - '**.c'
      - '**.h'
      - 'compat/*'
      - '.github/workflows/NetBSD.yml'
  pull_request:
    branches:
      - '*'
    paths:
      - '**.c'
      - '**.h'
      - 'compat/*'
      - '.github/workflows/NetBSD.yml'



jobs:
  NetBSD:
    runs-on: macos-12
    steps:
    - uses: actions/checkout@v2
    - uses: vmactions/netbsd-vm@v0
      with:
        prepare: |
          pkg_add  automake autoconf libtool pkgconf libevent msgpack libssh
        usesh: true
        run: |
          autoupdate
          ./autogen.sh
          ./configure
          make
          make install