Clam 2646 update recipes #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 pytest and mussels | |
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 | |
shell: bash | |
run: msl build -r clamav -t x64 | |
- name: Build for x86 | |
shell: bash | |
run: msl build -r clamav -t x86 | |
- name: Build for arm64 | |
shell: bash | |
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 Build Tools | |
run: brew install bison flex pipx | |
- name: Install pytest and mussels | |
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 | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update package listings | |
run: sudo apt-get update | |
- name: Install Build Tools | |
run: sudo apt-get install -y bison flex valgrind pipx | |
- name: Install pytest and mussels | |
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 |