diff options
author | lns <matzeton@googlemail.com> | 2022-09-20 12:29:48 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-09-20 17:34:46 +0200 |
commit | 5086b13f9e486e2ed953bf5eccb6851bd6e2b1b4 (patch) | |
tree | 5220d3d044d9b6c4221513f30e413ee4ffaa8fe8 /.github | |
parent | 74146a39c666a87d0480125669feb9901e5bc8cb (diff) |
Build DPP with a toolchain tarball generated by mingw-w64-build-ng.
* integrate into CircleCI
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5edbcd4..06a5415 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,9 +3,11 @@ on: push: branches: - main + - tmp pull_request: branches: - main + - tmp types: [opened, synchronize, reopened] release: types: [created] @@ -53,6 +55,7 @@ jobs: run: | 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: Cleanup run: | make deps-clean |