Skip to content

Commit b99984e

Browse files
committed
Add action to build -master images
1 parent e96bfbd commit b99984e

File tree

7 files changed

+47
-7
lines changed

7 files changed

+47
-7
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker PostGIS CI
1+
name: Build Docker images for MobilityDB
22

33
on:
44
push:
@@ -22,7 +22,7 @@ jobs:
2222

2323
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }}-${{ matrix.mobilitydb }}
2424
runs-on: ubuntu-latest
25-
continue-on-error: ${{ matrix.postgis == 'master' }}
25+
continue-on-error: ${{ matrix.mobilitydb == 'master' }}
2626
env:
2727
VERSION: ${{ matrix.postgres }}-${{ matrix.postgis }}-${{ matrix.mobilitydb }}
2828

.github/workflows/push-master.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Build Docker images for MobilityDB master branch
2+
3+
on:
4+
workflow_dispatch:
5+
repository_dispatch:
6+
types: [mobilitydb-master-update]
7+
8+
defaults:
9+
run:
10+
shell: bash
11+
12+
jobs:
13+
14+
make-docker-images:
15+
strategy:
16+
matrix:
17+
postgres: [13, 14, 15, 16, 17]
18+
postgis: [3.5]
19+
20+
name: Build docker image for ${{ matrix.postgres }}-${{ matrix.postgis }}-master
21+
runs-on: ubuntu-latest
22+
continue-on-error: true
23+
env:
24+
VERSION: ${{ matrix.postgres }}-${{ matrix.postgis }}-master
25+
26+
steps:
27+
- name: Checkout source
28+
uses: actions/checkout@v4
29+
30+
- name: Build docker image for ${{ env.VERSION }}
31+
run: make build
32+
33+
- name: Login to dockerhub
34+
uses: docker/login-action@v3
35+
with:
36+
username: ${{ secrets.DOCKERHUB_USERNAME }}
37+
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
38+
39+
- name: Push docker image to dockerhub
40+
run: make push

13-3.5-1.2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WORKDIR /usr/local/src/MobilityDB
3636
RUN mkdir -p build \
3737
&& cd build \
3838
&& cmake -DCMAKE_BUILD_TYPE=Release \
39-
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
39+
-DNPOINT=on -DPOSE=on .. \
4040
&& make -j$(nproc) \
4141
&& make install
4242

14-3.5-1.2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WORKDIR /usr/local/src/MobilityDB
3636
RUN mkdir -p build \
3737
&& cd build \
3838
&& cmake -DCMAKE_BUILD_TYPE=Release \
39-
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
39+
-DNPOINT=on -DPOSE=on .. \
4040
&& make -j$(nproc) \
4141
&& make install
4242

15-3.5-1.2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WORKDIR /usr/local/src/MobilityDB
3636
RUN mkdir -p build \
3737
&& cd build \
3838
&& cmake -DCMAKE_BUILD_TYPE=Release \
39-
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
39+
-DNPOINT=on -DPOSE=on .. \
4040
&& make -j$(nproc) \
4141
&& make install
4242

16-3.5-1.2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WORKDIR /usr/local/src/MobilityDB
3636
RUN mkdir -p build \
3737
&& cd build \
3838
&& cmake -DCMAKE_BUILD_TYPE=Release \
39-
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
39+
-DNPOINT=on -DPOSE=on .. \
4040
&& make -j$(nproc) \
4141
&& make install
4242

17-3.5-1.2/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WORKDIR /usr/local/src/MobilityDB
3636
RUN mkdir -p build \
3737
&& cd build \
3838
&& cmake -DCMAKE_BUILD_TYPE=Release \
39-
-DNPOINT=on -DCBUFFER=on -DPOSE=on .. \
39+
-DNPOINT=on -DPOSE=on .. \
4040
&& make -j$(nproc) \
4141
&& make install
4242

0 commit comments

Comments
 (0)