Skip to content

Commit

Permalink
GH actions: use non-system install for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Lealem Amedie committed Jun 4, 2024
1 parent d7098c6 commit bdacc68
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/fsanitize-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ jobs:
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl
run: ./configure --enable-wolfclu --enable-crl --enable-dsa
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$PWD/install-dir
- name: wolfssl make
working-directory: ./wolfssl
run: make
- name: wolfssl make install
working-directory: ./wolfssl
run: sudo make install
run: make install
- name: ldconfig
working-directory: ./wolfssl
run: sudo ldconfig
run: ldconfig
- uses: actions/checkout@master
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure CC="gcc -fsanitize=address"
run: ./configure CC="gcc -fsanitize=address" --with-wolfssl=../wolfssl/install-dir
- name: make
run: make
- name: make check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl
run: ./configure --enable-wolfclu --enable-crl --enable-dsa
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$PWD/install-dir
- name: wolfssl make
working-directory: ./wolfssl
run: make
Expand All @@ -33,7 +33,7 @@ jobs:
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
run: ./configure --with-wolfssl=../wolfssl/install-dir
- name: make
run: make
- name: make check
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ jobs:
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl
run: ./configure --enable-wolfclu --enable-crl --enable-dsa
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$PWD/install-dir
- name: wolfssl make
working-directory: ./wolfssl
run: make
- name: wolfssl make install
working-directory: ./wolfssl
run: sudo make install
run: make install
- name: ldconfig
working-directory: ./wolfssl
run: sudo ldconfig
run: ldconfig
- uses: actions/checkout@master
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
run: ./configure --with-wolfssl=../wolfssl/install-dir
- name: make
run: make
- name: make check
Expand Down

0 comments on commit bdacc68

Please sign in to comment.