Merge pull request #681 from ejohnstown/action-update

macOS Action Update
pull/680/head
JacobBarthelmeh 2024-04-26 11:01:53 -06:00 committed by GitHub
commit d2c428461c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 5 deletions

View File

@ -17,14 +17,12 @@ jobs:
repository: wolfSSL/wolfssl.git
ref: master
- name: brew
run: brew install automake
run: brew install autoconf automake libtool
- name: build wolfSSL
run: ./autogen.sh && ./configure --enable-ssh --enable-cryptonly && make check && sudo make install
run: ./autogen.sh && ./configure --enable-wolfssh --enable-cryptonly && make check && sudo make install
- uses: actions/checkout@v2
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
run: autoreconf -ivf && ./configure
- name: make
run: make
- name: make check