Skip to content

Commit b5bf88b

Browse files
committed
(CI) Forcing update test to tun when files change
1 parent b9679b2 commit b5bf88b

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

.github/workflows/update.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,28 @@ on:
88
workflow_dispatch:
99
push:
1010
paths:
11-
- '.github/workflows/update.yml'
11+
- '.github/workflows/ubuntu.yml'
12+
- 'src/**'
13+
- 'include/**'
14+
- 'sql/**'
15+
- 'pgtap/**'
16+
- 'tools/testers/**'
17+
- 'CMakeLists.txt'
18+
19+
branches-ignore:
20+
- 'gh-pages'
21+
22+
tags: []
23+
24+
pull_request:
25+
paths:
26+
- '.github/workflows/check-queries.yml'
27+
- 'src/**'
28+
- 'include/**'
29+
- 'sql/**'
30+
- 'pgtap/**'
31+
- 'tools/testers/**'
32+
- 'CMakeLists.txt'
1233

1334
branches-ignore:
1435
- 'gh-pages'
@@ -71,9 +92,6 @@ jobs:
7192
postgresql-${PGVER}-postgis-${PGIS}-scripts \
7293
postgresql-server-dev-${PGVER}
7394
74-
python -m pip install --upgrade pip
75-
pip install -r requirements.txt
76-
7795
wget https://sourceforge.net/projects/boost/files/boost/1.${{ matrix.boost_minor }}.0/boost_1_${{ matrix.boost_minor }}_0.tar.bz2
7896
sudo tar --bzip2 -xf boost_1_${{ matrix.boost_minor }}_0.tar.bz2
7997
sudo mv boost_1_${{ matrix.boost_minor }}_0/boost /usr/include/
@@ -111,7 +129,7 @@ jobs:
111129
export PATH=/usr/lib/postgresql/${PGVER}/bin:$PATH
112130
mkdir build
113131
cd build
114-
cmake -DPOSTGRESQL_VERSION=${PGVER} -DCMAKE_BUILD_TYPE=Release -DWITH_DOC=OFF ..
132+
cmake -DPOSTGRESQL_VERSION=${PGVER} -DCMAKE_BUILD_TYPE=Release ..
115133
make -j 4
116134
sudo make install
117135

0 commit comments

Comments
 (0)