diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-06-28 12:58:24 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-06-28 13:23:10 +0200 |
commit | f72851a80c90960822c5498b717fac738a92971b (patch) | |
tree | e94c6dcb7480e3895cd3cb2d2463a9688967a55c /.github | |
parent | 77b71807249233c5289e106ef753515a33c93f1f (diff) |
example3 supports BUILD_NATIVE
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e112b49..5dcea60 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,7 +40,7 @@ jobs: if: startsWith(matrix.os, 'ubuntu') run: | sudo apt-get update - sudo apt-get install autoconf automake cmake libtool pkg-config gettext flex bison + sudo apt-get install autoconf automake bison build-essential cmake flex libtool pkg-config gettext libboost-dev sudo apt-get install ${{ matrix.compiler }} lcov osslsigncode - name: Print Help run: | @@ -56,6 +56,9 @@ jobs: make examples-install DESTDIR=$(realpath _install) ls -alh _install test -r _install/codesign-ca-cert.crt -a -r _install/dpp-example.bat -a -r _install/dpp-example-cplusplus.bat -a -r _install/dpp-example-cplusplus-EASTL.bat -a -r _install/dpp-example.sys -a -r _install/dpp-example-cplusplus.sys -a -r _install/dpp-example-cplusplus-EASTL.sys + - name: Test + run: | + ./_install/dpp-example-cplusplus-EASTL.run - name: Cleanup run: | make deps-clean |