diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 03:23:13 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 03:23:13 +0200 |
commit | 4e6e8d8c151c9eb7888927e816dc3756a600ec0f (patch) | |
tree | d31e0034ec19c1fb758348d14a5f1b37693da05c /.github/workflows/ci.yml | |
parent | Makefile: move the prelude to prelude.mk (diff) | |
download | math-server-4e6e8d8c151c9eb7888927e816dc3756a600ec0f.tar.gz math-server-4e6e8d8c151c9eb7888927e816dc3756a600ec0f.zip |
update cmake-common
Also, change the build directory to build/.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fd12a7..65ff40e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: - name: Cache Boost uses: actions/cache@v3 with: - path: '${{ runner.workspace }}/build/boost_*.tar.gz' + path: './build/boost_*.tar.gz' key: 'boost_${{ env.BOOST_VERSION }}' - name: Build Boost run: make deps @@ -64,7 +64,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: 'math-server-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}' - path: '${{ runner.workspace }}/build/install/' + path: './build/install/' if-no-files-found: error - name: Test run: make test |