Skip to content

Commit 1254c93

Browse files
committed
macOS Action Update
1. In the brew install step explicitly install autoconf and add libtool. 2. Skip running autogen.sh for wolfSSH, just use autoreconf directly. 3. Use "--enable-wolfssh" when building wolfSSL.
1 parent 9d93d71 commit 1254c93

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/macos-check.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@ jobs:
1717
repository: wolfSSL/wolfssl.git
1818
ref: master
1919
- name: brew
20-
run: brew install automake
20+
run: brew install autoconf automake libtool
2121
- name: build wolfSSL
22-
run: ./autogen.sh && ./configure --enable-ssh --enable-cryptonly && make check && sudo make install
22+
run: ./autogen.sh && ./configure --enable-wolfssh --enable-cryptonly && make check && sudo make install
2323
- uses: actions/checkout@v2
24-
- name: autogen
25-
run: ./autogen.sh
2624
- name: configure
27-
run: ./configure
25+
run: autoreconf -ivf && ./configure
2826
- name: make
2927
run: make
3028
- name: make check

0 commit comments

Comments
 (0)