Skip to content

Commit

Permalink
[#144] CI for wolf build - added to $GITHUB_PATH environmental variable;
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucas9 committed Sep 27, 2023
1 parent 5acf258 commit 5b80a82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ jobs:
- name: Build WolfSSL
run: mkdir /tmp/wolfssl/build;
cd /tmp/wolfssl/build;
cmake -DWOLFSSL_AESCCM=yes -DWOLFSSL_AESSIV=yes -DWOLFSSL_CMAC=yes ..;
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/tmp/wolfssl/build"
cmake -DCMAKE_INSTALL_PREFIX=$HOME/wolfssl -DWOLFSSL_AESCCM=yes -DWOLFSSL_AESSIV=yes -DWOLFSSL_CMAC=yes ..;
make install;
echo "$HOME/wolfssl" >> $GITHUB_PATH;
echo $GITHUB_PATH
# End Container Setup

- name: Wolf Build Script
working-directory: ${{github.workspace}}
run: bash ${GITHUB_WORKSPACE}/support/scripts/build_wolf.sh
env:
LD_LIBRARY_PATH: /tmp/wolfssl/build

0 comments on commit 5b80a82

Please sign in to comment.