From 218e2e8b5b2bc69ac02f78aa2d0b2dccd947e779 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 3 Apr 2021 14:26:44 +0300 Subject: add `make install`, `make test`, etc. --- .github/workflows/ci.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to '.github/workflows') 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' -- cgit v1.2.3