Skip to content

Commit

Permalink
Merge pull request #42 from kpcyrd/update
Browse files Browse the repository at this point in the history
Port to libclamav 1.2
  • Loading branch information
kpcyrd committed Sep 3, 2023
2 parents e9fac36 + 1596b6b commit 7b2f123
Show file tree
Hide file tree
Showing 8 changed files with 778 additions and 537 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install libclamav-dev
run: |
sudo apt-get update
sudo apt-get install libclamav-dev
- name: Build
run: cargo build --verbose
- name: Run tests
Expand All @@ -33,7 +35,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install libclamav-dev clamav-freshclam
run: |
sudo apt-get update
sudo apt-get install libclamav-dev clamav-freshclam
- name: Disable apparmor
run: sudo apparmor_parser -R /etc/apparmor.d/usr.bin.freshclam
- name: Fetch database
Expand All @@ -53,7 +57,9 @@ jobs:
override: true
components: clippy
- name: Install dependencies
run: sudo apt-get install libclamav-dev
run: |
sudo apt-get update
sudo apt-get install libclamav-dev
- uses: actions-rs/cargo@v1
with:
command: clippy
Expand Down
Loading

0 comments on commit 7b2f123

Please sign in to comment.