aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-03 14:26:44 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-03 14:26:44 +0300
commit218e2e8b5b2bc69ac02f78aa2d0b2dccd947e779 (patch)
tree1eaad9c94433c3d1afca34ef2dc878dc64123ff4 /.github/workflows
parentcmake: use install_pdbs() (diff)
downloadwinapi-debug-218e2e8b5b2bc69ac02f78aa2d0b2dccd947e779.tar.gz
winapi-debug-218e2e8b5b2bc69ac02f78aa2d0b2dccd947e779.zip
add `make install`, `make test`, etc.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 3 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0ba4227..c727bbc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -58,20 +58,14 @@ jobs:
platform: '${{ matrix.platform }}'
if: matrix.toolset == 'mingw'
- name: Build Boost
- run: |
- cd cmake
- python -m project.ci.boost -- --with-filesystem --with-program_options --with-test
+ run: make deps
- name: Build
- run: |
- cd cmake
- python -m project.ci.cmake --install
+ run: make install
- name: Upload binaries
uses: actions/upload-artifact@v2
with:
name: 'pdb-repo-${{ matrix.os }}-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}'
path: '${{ runner.workspace }}/build/install/'
- name: Test
- run: |
- cd ../build/cmake
- ctest -C '${{ env.CONFIGURATION }}' --verbose
+ run: make test
if: runner.os == 'Windows'