diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-03 14:26:44 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-03 14:26:44 +0300 |
commit | 218e2e8b5b2bc69ac02f78aa2d0b2dccd947e779 (patch) | |
tree | 1eaad9c94433c3d1afca34ef2dc878dc64123ff4 /.github/workflows | |
parent | cmake: use install_pdbs() (diff) | |
download | winapi-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.yml | 12 |
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' |