Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz committed Dec 27, 2023
1 parent c656de5 commit ebcf686
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,15 @@ jobs:
if: startsWith(matrix.platform, 'macos-')
run: brew install cmake swig openssl bison flex

- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores

- name: Build Zeek (non-Windows)
if: "!startsWith(matrix.platform, 'windows-')"
run: |
echo "Number of CPU cores detected: ${{ steps.cpu-cores.outputs.count }}"
cd zeek
./configure
make
make -j${{ steps.cpu-cores.outputs.count }}
make install

0 comments on commit ebcf686

Please sign in to comment.