continue to cleanup on fail case and use WLOG for debug messages #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: wolfSSHd Test | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: wolfSSL/wolfssl.git | |
ref: master | |
- name: build wolfSSL | |
run: ./autogen.sh && ./configure --enable-all --prefix=/usr && make && sudo make install | |
- uses: actions/checkout@v2 | |
- name: autogen | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure --enable-all CPPFLAGS="-DWOLFSSH_NO_FPKI -DWOLFSSH_NO_SFTP_TIMEOUT -DWOLFSSH_MAX_SFTP_RW=4000000" | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
- name: run wolfSSHd tests | |
run: sudo ./run_all_sshd_tests.sh root | |
working-directory: ./apps/wolfsshd/test |