aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-09-09 17:50:28 +0200
committerToni Uhlig <matzeton@googlemail.com>2022-09-09 18:24:21 +0200
commit51521cb642358770e94b8f9b4f40dd3b4c827cad (patch)
tree4795b8bffcdf2b628d9c9be15a4ebb1150f9f760 /.github
parent3be8cccbdbb548a4538d23470aa20e65b33e7815 (diff)
Repository clean up, renamed ddk-template* to dpp-example*.
* Improved/Added root and examples Makefile * Adapted CIs Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1501df5..5edbcd4 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -39,7 +39,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install autoconf automake cmake libtool pkg-config gettext flex bison
- sudo apt-get install ${{ matrix.compiler }} lcov
+ sudo apt-get install ${{ matrix.compiler }} lcov osslsigncode
- name: Print Help
run: |
make help
@@ -48,7 +48,11 @@ jobs:
make deps
- name: Build Examples
run: |
- make all
+ make examples
+ - name: Install Examples
+ run: |
+ make examples-install DESTDIR=$(realpath _install)
+ ls -alh _install
- name: Cleanup
run: |
make deps-clean