Skip to content

Commit 43ecdde

Browse files
authored
Merge pull request #8 from dgarske/test_sudo
Run tests with sudo. Add input arguments.
2 parents 3da2179 + a0ebec7 commit 43ecdde

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/make-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
- name: wolfKeyMgr build
4646
run: |
4747
./autogen.sh
48-
./configure
49-
make
48+
./configure ${{inputs.config-args}}
49+
make ${{inputs.make-args}}
5050
- name: wolfKeyMgr make check
5151
run: make check
5252
- name: wolfKeyMgr make install
@@ -56,11 +56,11 @@ jobs:
5656

5757
# wolfKeyMgr examples
5858
- name: start key manager service
59-
run: ./src/wolfkeymgr &
59+
run: sudo ./src/wolfkeymgr &
6060
- name: run https server
61-
run: ./examples/https/server &
61+
run: sudo ./examples/https/server &
6262
- name: run the middle box decryptor
63-
run: NOSTDIN=1 ./examples/middlebox/decrypt &
63+
run: sudo NOSTDIN=1 ./examples/middlebox/decrypt &
6464
- name: run the https client
6565
run: ./examples/https/client
6666

0 commit comments

Comments
 (0)