-
Notifications
You must be signed in to change notification settings - Fork 3
148 lines (136 loc) · 4.62 KB
/
dockerhub_ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: Dockerhub CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
# Triggers every week on tuesday night
- cron: '0 0 * * 2'
env:
# Specify which image to build
DOCKER_REPO: godatadriven/spark
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
image:
-
SPARK_VERSION: "3.5.3"
OPENJDK_VERSION: "17"
HADOOP_VERSION: "3"
LATEST: "true"
-
SPARK_VERSION: "3.4.4"
OPENJDK_VERSION: "11"
HADOOP_VERSION: "3"
LATEST: "false"
-
SPARK_VERSION: "3.3.4"
OPENJDK_VERSION: "11"
HADOOP_VERSION: "3"
LATEST: "false"
-
SPARK_VERSION: "3.1.3"
OPENJDK_VERSION: "11"
HADOOP_VERSION: "3.2"
LATEST: "false"
-
SPARK_VERSION: "3.0.3"
OPENJDK_VERSION: "11"
HADOOP_VERSION: "3.2"
LATEST: "false"
-
SPARK_VERSION: "2.4.8"
OPENJDK_VERSION: "8"
HADOOP_VERSION: "2.7"
LATEST: "false"
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: setup-buildx
uses: docker/setup-buildx-action@v3
- name: Generate image metadata
id: meta
uses: docker/metadata-action@v5
with:
images: "${{ env.DOCKER_REPO }}"
flavor: |
latest=${{ matrix.image.LATEST }}
prefix=
suffix=
tags: |
type=semver,pattern={{version}},value=${{ matrix.image.SPARK_VERSION }}
type=semver,pattern={{major}}.{{minor}},value=${{ matrix.image.SPARK_VERSION }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.vendor=Xebia Data, https://xebia.com/
org.opencontainers.image.description=An Apache Spark Docker image.
- name: Build image
id: docker-build
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: false
load: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
HADOOP_VERSION=${{ matrix.image.HADOOP_VERSION }}
OPENJDK_VERSION=${{ matrix.image.OPENJDK_VERSION }}
SPARK_VERSION=${{ matrix.image.SPARK_VERSION }}
labels: ${{ steps.meta.outputs.labels }}
annotations: ${{ steps.meta.outputs.annotations }}
# https://docs.docker.com/build/ci/github-actions/share-image-jobs/
outputs: type=docker,dest=/tmp/gdd-spark-${{ matrix.image.SPARK_VERSION }}.tar
- name: Test image
env:
IMAGE_NAME: "godatadriven/spark:${{ matrix.image.SPARK_VERSION }}"
run: |
docker load --input /tmp/gdd-spark-${{ matrix.image.SPARK_VERSION }}.tar
docker image ls -a
if [[ -f "docker-compose.test.yml" ]]; then
docker compose --file docker-compose.test.yml build --builder ${{ steps.setup-buildx.outputs.name }}
docker compose --file docker-compose.test.yml run sut
fi
- name: Login to DockerHub
if: github.ref == 'refs/heads/master'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB }}
- name: Push image
# Build and push because of multi platform build
if: github.ref == 'refs/heads/master'
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
provenance: false
sbom: false
tags: ${{ steps.meta.outputs.tags }}
build-args: |
HADOOP_VERSION=${{ matrix.image.HADOOP_VERSION }}
OPENJDK_VERSION=${{ matrix.image.OPENJDK_VERSION }}
SPARK_VERSION=${{ matrix.image.SPARK_VERSION }}
labels: ${{ steps.meta.outputs.labels }}
annotations: ${{ steps.meta.outputs.annotations }}
platforms: linux/amd64,linux/arm64
- name: Report Status
if: always() && github.ref == 'refs/heads/master'
uses: ravsamhq/notify-slack-action@v2
with:
status: ${{ job.status }}
notify_when: 'failure'
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GDD_GENERAL_WEBHOOK }}