Skip to content

Commit 331d033

Browse files
committed
Update Windows build workflow to include additional libraries and modify verbosity levels in README
1 parent a0ba843 commit 331d033

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/go_build_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
run: |
5151
export PKG_CONFIG_PATH="/mingw64/lib/pkgconfig:$PKG_CONFIG_PATH"
5252
export CGO_CFLAGS="-I/mingw64/include"
53-
export CGO_LDFLAGS="-L/mingw64/lib -lyara -ljansson -lmagic -lssl -lcrypto -lws2_32 -lcrypt32"
53+
export CGO_LDFLAGS="-L/mingw64/lib -lyara -ljansson -lmagic -lssl -lcrypto -lshlwapi -lregex -lws2_32 -lcrypt32"
5454
cd $GITHUB_WORKSPACE
5555
go test ./... -v
5656
- name: Building Fastfinder
5757
run: |
5858
export PKG_CONFIG_PATH="/mingw64/lib/pkgconfig:$PKG_CONFIG_PATH"
5959
export CGO_CFLAGS="-I/mingw64/include"
60-
export CGO_LDFLAGS="-L/mingw64/lib -lyara -ljansson -lmagic -lssl -lcrypto -lws2_32 -lcrypt32"
60+
export CGO_LDFLAGS="-L/mingw64/lib -lyara -ljansson -lmagic -lssl -lcrypto -lshlwapi -lregex -lws2_32 -lcrypt32"
6161
export GOOS="windows"
6262
export GOARCH="amd64"
6363
cd $GITHUB_WORKSPACE

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,11 @@ fastfinder [OPTIONS]
8383

8484
### Verbosity Levels
8585

86-
- **Level 4**: Alerts only
86+
- **Level 1**: Alerts only
87+
- **Level 2**: Alerts and warnings
8788
- **Level 3**: Alerts and errors (default)
88-
- **Level 2**: Alerts, errors, and I/O operations
89-
- **Level 1**: Full verbosity
89+
- **Level 4**: Alerts, errors, and I/O operations
90+
- **Level 5**: Full verbosity (for debug purpose or really advanced logging)
9091

9192
### Quick Examples
9293

@@ -219,4 +220,4 @@ This project is licensed under the AGPL License - see the [LICENSE](LICENSE) fil
219220
---
220221

221222
**Made with ❤️ by the cybersecurity community**
222-
Created by Jean-Pierre GARNIER (@codeyourweb) • 2021-2025
223+
Created by Jean-Pierre GARNIER (@codeyourweb) • 2021-2026

utils_common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func RenderFastfinderLogo() string {
4444
txtLogo += " |__ /\\ /__` | |__ | |\\ | | \\ |__ |__) " + LineBreak
4545
txtLogo += " | /~~\\ .__/ | | | | \\| |__/ |___ | \\ " + LineBreak
4646
txtLogo += " " + LineBreak
47-
txtLogo += " 2021-2022 | Jean-Pierre GARNIER | @codeyourweb " + LineBreak
47+
txtLogo += " 2021-2026 | Jean-Pierre GARNIER | @codeyourweb " + LineBreak
4848
txtLogo += " https://github.com/codeyourweb/fastfinder " + LineBreak
4949
return txtLogo
5050
}

0 commit comments

Comments
 (0)