Skip to content

Commit

Permalink
CI: reduce cache size (#241)
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeny Malygin <[email protected]>
  • Loading branch information
678098 authored Apr 17, 2024
1 parent 9b033c2 commit c564ff1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ jobs:
-DCMAKE_PREFIX_PATH=${{ github.workspace }}/deps/srcs/bde-tools/BdeBuildSystem \
-DCMAKE_INSTALL_LIBDIR=lib64
cmake --build build/blazingmq --parallel 8 --target all all.t
- name: Run C++ Unit Tests
run: |
cd ${{ github.workspace }}/build/blazingmq
ctest -E mwcsys_executil.t --output-on-failure
- name: Clean-up build directories before caching
run: |
find . -name "*.o" -type f -delete
find . -name "*.a" -type f -delete
find . -name "*.t.tsk" -type f -delete
- uses: actions/cache@v4
with:
path: |
Expand Down Expand Up @@ -82,10 +91,6 @@ jobs:
src/python/bin/schemagen
src/python/bin/tweakgen
pytest src/python
- name: Run C++ Unit Tests
run: |
cd ${{ github.workspace }}/build/blazingmq
ctest -E mwcsys_executil.t --output-on-failure
integration_tests_ubuntu:
name: BlazingMQ integration tests
Expand Down

0 comments on commit c564ff1

Please sign in to comment.