Skip to content

Commit

Permalink
Fix MacOS workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
embhorn committed Jul 25, 2024
1 parent 73cda5e commit 4eda4aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/macos-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl
run: ./configure --enable-enckeys
run: ./configure --enable-enckeys --prefix=$GITHUB_WORKSPACE/build-dir/
- name: wolfssl make
working-directory: ./wolfssl
run: make
Expand All @@ -43,7 +43,7 @@ jobs:
run: ./autogen.sh

- name: configure
run: ./configure
run: ./configure --with-libwolfssl-prefix=$GITHUB_WORKSPACE/build-dir/
- name: make
run: make
- name: make check
Expand All @@ -57,21 +57,21 @@ jobs:
run: make check

- name: configure with SN Enabled
run: ./configure --enable-sn
run: ./configure --enable-sn --with-libwolfssl-prefix=$GITHUB_WORKSPACE/build-dir/
- name: make
run: make
- name: make check
run: make check

- name: configure with Non-Block
run: ./configure --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK"
run: ./configure --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK" --with-libwolfssl-prefix=$GITHUB_WORKSPACE/build-dir/
- name: make
run: make
- name: make check
run: make check

- name: configure with Non-Block and Multi-threading
run: ./configure --enable-mt --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK"
run: ./configure --enable-mt --enable-nonblock CFLAGS="-DWOLFMQTT_TEST_NONBLOCK" --with-libwolfssl-prefix=$GITHUB_WORKSPACE/build-dir/
- name: make
run: make
- name: make check
Expand Down

0 comments on commit 4eda4aa

Please sign in to comment.