-
Notifications
You must be signed in to change notification settings - Fork 8
92 lines (63 loc) · 2.33 KB
/
build.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: ClamAV Build Test
on:
pull_request:
branches:
- master
jobs:
build-windows:
runs-on: windows-2019
steps:
- name: Remove link.exe to avoid conflict with Visual Studio linker
run: rm /usr/bin/link.exe
shell: bash
- uses: actions/checkout@v4
- name: Install Choco Things
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install nasm
- name: Install Python Things
run: python3 -m pip install pytest mussels
- name: Install Rust for cross-compiling to arm64
run: rustup target add aarch64-pc-windows-msvc
- uses: lukka/[email protected]
- name: Build for x64
run: msl build -r clamav -t x64
- name: Build for x86
run: msl build -r clamav -t x86
- name: Build for arm64
run: msl build -r clamav -t arm64
# TODO: add test step that clones clamav, sets environment variables, and runs tests
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install Brew Things
run: brew install bison flex pipx
- name: Install Python Things
run: python3 -m pip install mussels pytest setuptools --break-system-packages
- uses: lukka/[email protected]
- name: Build for using static libraries for host platform
shell: bash
run: msl build -r clamav -t host-static
- name: Build for using dynamic libraries for host platform
shell: bash
run: msl build -r clamav -t host
# TODO: add test step that clones clamav, sets environment variables, and runs tests
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update package listings
run: sudo apt-get update
- name: Install Apt-get Things
run: sudo apt-get install -y bison flex valgrind pipx
- name: Install Python Things
run: pipx install pytest mussels
- uses: lukka/[email protected]
- name: Build for using static libraries for host platform
shell: bash
run: msl build -r clamav -t host-static
- name: Build for using dynamic libraries for host platform
shell: bash
run: msl build -r clamav -t host
# TODO: add test step that clones clamav, sets environment variables, and runs tests