Skip to content

Commit

Permalink
Enable macho module when running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Jan 30, 2024
1 parent 8695c84 commit ff4a923
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
strategy:
matrix:
config:
- "--enable-debug --enable-cuckoo --enable-magic --enable-pb-tests --enable-address-sanitizer --enable-undefined-behaviour-sanitizer"
- "--enable-debug --enable-profiling --enable-cuckoo --enable-magic --enable-pb-tests --enable-address-sanitizer --enable-undefined-behaviour-sanitizer"
- "--enable-debug --enable-cuckoo --enable-magic --enable-macho --enable-pb-tests --enable-address-sanitizer --enable-undefined-behaviour-sanitizer"
- "--enable-debug --enable-profiling --enable-cuckoo --enable-magic --enable-macho --enable-pb-tests --enable-address-sanitizer --enable-undefined-behaviour-sanitizer"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Prepare for building
run: |
./bootstrap.sh
./configure --enable-debug --enable-cuckoo --enable-magic --enable-pb-tests
./configure --enable-debug --enable-cuckoo --enable-magic --enable-macho --enable-pb-tests
- name: Build
run: make clean && make
- name: Run tests
Expand Down Expand Up @@ -137,13 +137,13 @@ jobs:
args: >
bash -c
"
apt-get update -y &&
apt-get update -y &&
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata &&
apt-get install -y automake libtool make gcc pkg-config bison git &&
git clone https://github.com/VirusTotal/yara &&
cd yara &&
./bootstrap.sh &&
./configure --disable-proc-scan &&
./configure --disable-proc-scan --enable-macho &&
make &&
make check
"

0 comments on commit ff4a923

Please sign in to comment.