Skip to content

Commit

Permalink
Use GITHUB_ACTION_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
Lealem Amedie committed Jun 4, 2024
1 parent 24f7cd2 commit 58e8065
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/fsanitize-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,18 @@ jobs:
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$GITHUB_WORKSPACE/install-dir
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$GITHUB_ACTION_PATH/install-dir
- name: wolfssl make
working-directory: ./wolfssl
run: make
- name: wolfssl make install
working-directory: ./wolfssl
run: make install
- name: ldconfig
working-directory: ./wolfssl
run: ldconfig
- uses: actions/checkout@master
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure CC="gcc -fsanitize=address" --with-wolfssl=$GITHUB_WORKSPACE/install-dir
run: ./configure CC="gcc -fsanitize=address" --with-wolfssl=$GITHUB_ACTION_PATH/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 --prefix=$GITHUB_WORKSPACE/install-dir
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$GITHUB_ACTION_PATH/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 --with-wolfssl=$GITHUB_WORKSPACE/install-dir
run: ./configure --with-wolfssl=$GITHUB_ACTION_PATH/install-dir
- name: make
run: make
- name: make check
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/ubuntu-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,18 @@ jobs:
run: ./autogen.sh
- name: wolfssl configure
working-directory: ./wolfssl
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$GITHUB_WORKSPACE/install-dir
run: ./configure --enable-wolfclu --enable-crl --enable-dsa --prefix=$GITHUB_ACTION_PATH/install-dir
- name: wolfssl make
working-directory: ./wolfssl
run: make
- name: wolfssl make install
working-directory: ./wolfssl
run: make install
- name: ldconfig
working-directory: ./wolfssl
run: ldconfig
- uses: actions/checkout@master
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --with-wolfssl=$GITHUB_WORKSPACE/install-dir
run: ./configure --with-wolfssl=$GITHUB_ACTION_PATH/install-dir
- name: make
run: make
- name: make check
Expand Down

0 comments on commit 58e8065

Please sign in to comment.