diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 01:29:52 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 02:30:12 +0200 |
commit | 37b61e89d98fd3c149bc622fa7cfd39164583b44 (patch) | |
tree | 41e05efd6e665a10c4ad6ac4a4901c4250b4a4a4 /.github/workflows | |
parent | Makefile: move the prelude to prelude.mk (diff) | |
download | winapi-utf8-37b61e89d98fd3c149bc622fa7cfd39164583b44.tar.gz winapi-utf8-37b61e89d98fd3c149bc622fa7cfd39164583b44.zip |
update cmake-common
Also, change the build directory to build/.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ab8d34..d5065c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,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 @@ -70,7 +70,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: 'winapi-utf8-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}' - path: '${{ runner.workspace }}/build/install/' + path: './build/install/' if-no-files-found: error - name: Test run: make test @@ -83,8 +83,6 @@ jobs: if: github.ref == 'refs/heads/master' env: TOOLSET: mingw - PLATFORM: auto - CONFIGURATION: Debug CMAKE_FLAGS: -D WINAPI_UTF8_TESTS=OFF steps: # This is rather stupid. In order to build Doxygen docs, I need a working @@ -113,5 +111,5 @@ jobs: uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages - folder: ../build/cmake/html + folder: ./build/cmake/html single-commit: true |