diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 02:54:07 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 02:54:07 +0200 |
commit | 9400c8706f8cd985893f6ede5da66bbd17b03d44 (patch) | |
tree | 96a5bf037d84ba2b7919a0d0f7f656413437ff7f /.github/workflows/ci.yml | |
parent | Makefile: move the prelude to prelude.mk (diff) | |
download | winapi-debug-9400c8706f8cd985893f6ede5da66bbd17b03d44.tar.gz winapi-debug-9400c8706f8cd985893f6ede5da66bbd17b03d44.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 dd96114..c06fea0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,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: Set up Python uses: actions/setup-python@v4 @@ -68,7 +68,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: 'winapi-debug-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}' - path: '${{ runner.workspace }}/build/install/' + path: './build/install/' if-no-files-found: error - name: Test run: make test |