We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3da2179 + a0ebec7 commit 43ecddeCopy full SHA for 43ecdde
.github/workflows/make-test.yml
@@ -45,8 +45,8 @@ jobs:
45
- name: wolfKeyMgr build
46
run: |
47
./autogen.sh
48
- ./configure
49
- make
+ ./configure ${{inputs.config-args}}
+ make ${{inputs.make-args}}
50
- name: wolfKeyMgr make check
51
run: make check
52
- name: wolfKeyMgr make install
@@ -56,11 +56,11 @@ jobs:
56
57
# wolfKeyMgr examples
58
- name: start key manager service
59
- run: ./src/wolfkeymgr &
+ run: sudo ./src/wolfkeymgr &
60
- name: run https server
61
- run: ./examples/https/server &
+ run: sudo ./examples/https/server &
62
- name: run the middle box decryptor
63
- run: NOSTDIN=1 ./examples/middlebox/decrypt &
+ run: sudo NOSTDIN=1 ./examples/middlebox/decrypt &
64
- name: run the https client
65
run: ./examples/https/client
66
0 commit comments