We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28939d3 commit 4847855Copy full SHA for 4847855
1 file changed
.github/workflows/ci.yml
@@ -27,6 +27,8 @@ jobs:
27
28
steps:
29
- uses: actions/checkout@v4
30
+ with:
31
+ path: wolfclu
32
33
34
with:
@@ -54,17 +56,20 @@ jobs:
54
56
make install
55
57
58
- name: Build wolfCLU
59
+ working-directory: ./wolfclu
60
run: |
61
./autogen.sh
62
./configure ${{ matrix.sanitize }} --with-wolfssl=$GITHUB_WORKSPACE/build-dir
63
make -j
64
65
- name: Run tests
66
67
env:
68
LD_LIBRARY_PATH: ${{ github.workspace }}/build-dir/lib
69
DYLD_LIBRARY_PATH: ${{ github.workspace }}/build-dir/lib
70
run: make check
71
72
- name: Display log
73
if: always()
74
75
run: cat test-suite.log || true
0 commit comments