diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 09:00:37 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 09:00:37 +0200 |
commit | 4bcbf7dbadb234657c6853c26e113184c74eb0a2 (patch) | |
tree | 091ca8b505b277c9cb3cc228eb25836438b6b4bf /.github | |
parent | Makefile: move the prelude to prelude.mk (diff) | |
download | aes-tools-4bcbf7dbadb234657c6853c26e113184c74eb0a2.tar.gz aes-tools-4bcbf7dbadb234657c6853c26e113184c74eb0a2.zip |
update cmake-common
Also, change the build directory to build/.
Diffstat (limited to '.github')
-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 64bc844..b160b2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,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 @@ -60,7 +60,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: 'aes-tools-${{ matrix.toolset }}-${{ matrix.platform }}-asm${{ matrix.use_asm }}-${{ matrix.configuration }}' - path: '${{ runner.workspace }}/build/install/' + path: './build/install/' if-no-files-found: error - name: Test run: make test |