-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.37 KB
/
build_bsd.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
name: "Build on *BSD"
on:
push: {}
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- name: openbsd
architecture: x86-64
version: '7.6'
- name: openbsd
architecture: arm64
version: '7.6'
- name: freebsd
architecture: x86-64
version: '14.1'
- name: freebsd
architecture: arm64
version: '14.1'
- name: netbsd
architecture: x86-64
version: '10.0'
- - name: netbsd
architecture: arm64
version: '10.0'
steps:
- uses: actions/checkout@v4
- name: Build on ${{ matrix.os.name }} / ${{ matrix.os.architecture }}
uses: cross-platform-actions/action@v0.25.0
with:
environment_variables: MY_ENV1 MY_ENV2
operating_system: ${{ matrix.os.name }}
architecture: ${{ matrix.os.architecture }}
version: ${{ matrix.os.version }}
shell: bash
memory: 5G
cpu_count: 4
run: |
autoreconf -vfi
./configure
make