update dependancies and README #64
This file contains hidden or 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: fastfinder_build_linux | |
| on: [push, pull_request] | |
| jobs: | |
| linux_standard-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| bison \ | |
| flex \ | |
| autoconf \ | |
| pkg-config \ | |
| automake \ | |
| libtool \ | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.24 | |
| - name: Install YARA v4.5.5 | |
| run: | | |
| YARA_VERSION=4.5.5 | |
| wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v${YARA_VERSION}.tar.gz | tar -C /tmp -xzf - | |
| ( cd /tmp/yara-${YARA_VERSION} && ./bootstrap.sh && sudo ./configure && sudo make && sudo make install ) | |
| - uses: actions/checkout@v2 | |
| - name: Building Fastfinder | |
| run: | | |
| go build -trimpath -tags yara_static -a -ldflags '-s -w -extldflags "-static"' . | |
| ls | |
| sudo chmod +x fastfinder | |
| sudo ./fastfinder -h |