Skip to content

Commit fcb1619

Browse files
MarkAtwoodclaude
andcommitted
fix: pass WOLFSSL_DIR as env var, not cmake -D
wychcheck's CMakeLists.txt reads WOLFSSL_DIR from the environment ($ENV{WOLFSSL_DIR}), which overwrites any -D cache variable. Pass it as an env var so cmake picks it up correctly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6564a19 commit fcb1619

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/wycheproof.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ jobs:
6262

6363
- name: Build wolfcrypt-check
6464
working-directory: wychcheck
65+
env:
66+
WOLFSSL_DIR: ${{ github.workspace }}
6567
run: |
66-
cmake -B build -DWOLFSSL_DIR=${{ github.workspace }}
68+
cmake -B build
6769
cmake --build build -j$(nproc)
6870
6971
- name: Run wycheproof tests

0 commit comments

Comments
 (0)