Skip to content

Commit

Permalink
Limit scope of some CI jobs to not trigger on every change in tests/**
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Nov 7, 2024
1 parent e8ab15a commit 41851aa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .clusterfuzzlite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ RUN apt update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN git clone --depth 1 --branch 20240722.0 https://github.com/abseil/abseil-cpp $SRC/abseil && \
RUN git clone --depth 1 --branch 20240722.0 https://github.com/abseil/abseil-cpp $SRC/abseil-cpp && \
cd $SRC/abseil-cpp && \
mkdir build && cd build && \
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_POSITION_INDEPENDENT_CODE=ON .. && \
cmake --build . --target install && \
cd ../.. && rm -rf $SRC/abseil \
cd ../.. && rm -rf $SRC/abseil-cpp \

RUN git clone --depth 1 --branch 2024-07-02 https://github.com/google/re2 $SRC/re2 && \
cd $SRC/re2 && \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- 'cmake/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
pull_request:
branches:
Expand All @@ -23,7 +23,7 @@ on:
- 'cmake/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'examples/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
pull_request:
branches-ignore:
Expand All @@ -27,7 +27,7 @@ on:
- 'examples/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'examples/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
pull_request:
branches:
Expand All @@ -27,7 +27,7 @@ on:
- 'examples/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'examples/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
pull_request:
branches:
Expand All @@ -27,7 +27,7 @@ on:
- 'examples/**'
- 'include/**'
- 'src/**'
- 'tests/**'
- 'tests/unittests/**'
- '**/CMakeLists.txt'
workflow_dispatch:

Expand Down

0 comments on commit 41851aa

Please sign in to comment.