diff --git a/.github/workflows/macos-check.yml b/.github/workflows/macos-check.yml new file mode 100644 index 00000000..16145791 --- /dev/null +++ b/.github/workflows/macos-check.yml @@ -0,0 +1,34 @@ +name: macOS Build Test + +on: + push: + branches: [ '*' ] + pull_request: + branches: [ '*' ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + with: + repository: wolfSSL/wolfssl.git + ref: master + - name: brew + run: brew install automake + - name: build wolfSSL + run: ./autogen.sh && ./configure --enable-ssh --enable-cryptonly && make check && sudo make install + - uses: actions/checkout@v2 + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck + diff --git a/.github/workflows/ubuntu-check.yml b/.github/workflows/ubuntu-check.yml new file mode 100644 index 00000000..8f10e656 --- /dev/null +++ b/.github/workflows/ubuntu-check.yml @@ -0,0 +1,32 @@ +name: Ubuntu Build 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-ssh --enable-cryptonly --prefix=/usr && make check && sudo make install + - uses: actions/checkout@v2 + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck +