forked from opensnowcat/opensnowcat-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
143 lines (128 loc) · 5.49 KB
/
deploy.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
name: build
on: workflow_dispatch
permissions:
contents: write # to publish artifacts
jobs:
# deploy_to_github:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: coursier/cache-action@v3
# - name: Set up JDK
# uses: actions/setup-java@v1
# with:
# java-version: 11
# - name: Build artifacts
# run: |
# sbt 'project kafka' assembly
# sbt 'project kinesis' assembly
# sbt 'project nsq' assembly
# sbt 'project pubsub' assembly
# sbt 'project sqs' assembly
# sbt 'project stdout' assembly
# sbt 'project rabbitmq' assembly
# - name: Get current version
# id: ver
# run: |
# export PROJECT_VERSION=$(sbt "project core" version -Dsbt.log.noformat=true | perl -ne 'print "$1\n" if /info.*(\d+\.\d+\.\d+[^\r\n]*)/' | tail -n 1 | tr -d '\n')
# echo "project_version=$PROJECT_VERSION" >> $GITHUB_OUTPUT
# - name: Create GitHub release and attach artifacts
# uses: softprops/action-gh-release@v1
# with:
# draft: true
# prerelease: true
# name: ${{ steps.ver.outputs.project_version }}
# tag_name: ${{ steps.ver.outputs.project_version }}
# files: |
# kafka/target/scala-2.12/opensnowcat-collector-kafka-${{ steps.ver.outputs.project_version }}.jar
# kinesis/target/scala-2.12/opensnowcat-collector-kinesis-${{ steps.ver.outputs.project_version }}.jar
# nsq/target/scala-2.12/opensnowcat-collector-nsq-${{ steps.ver.outputs.project_version }}.jar
# pubsub/target/scala-2.12/opensnowcat-collector-google-pubsub-${{ steps.ver.outputs.project_version }}.jar
# sqs/target/scala-2.12/opensnowcat-collector-sqs-${{ steps.ver.outputs.project_version }}.jar
# stdout/target/scala-2.12/opensnowcat-collector-stdout-${{ steps.ver.outputs.project_version }}.jar
# rabbitmq/target/scala-2.12/opensnowcat-collector-rabbitmq-${{ steps.ver.outputs.project_version }}.jar
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy_docker:
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- kinesis
- sqs
- pubsub
- kafka
- nsq
- stdout
- rabbitmq
include:
- suffix: ""
- suffix: -experimental
platform: rabbitmq
steps:
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'corretto'
- name: Get current version
id: ver
run: |
export PROJECT_VERSION=$(sbt "project core" version -Dsbt.log.noformat=true | perl -ne 'print "$1\n" if /info.*(\d+\.\d+\.\d+[^\r\n]*)/' | tail -n 1 | tr -d '\n')
echo "project_version=$PROJECT_VERSION" >> $GITHUB_OUTPUT
- name: Stage the Docker build
run: sbt "project ${{ matrix.platform }}" docker:stage
- name: Stage the Docker distroless build
run: sbt "project ${{ matrix.platform }}Distroless" docker:stage
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: opensnowcat/opensnowcat-collector-${{ matrix.platform }}${{ matrix.suffix }}
tags: |
type=raw,value=latest,enable=${{ !contains(steps.ver.outputs.project_version, 'rc') }}
type=raw,value=latest-focal,enable=${{ !contains(steps.ver.outputs.project_version, 'rc') }}
type=raw,value=${{ steps.ver.outputs.project_version }}
type=raw,value=${{ steps.ver.outputs.project_version }}-focal
flavor: |
latest=false
- name: Docker metadata distroless
id: distroless-meta
uses: docker/metadata-action@v5
with:
images: opensnowcat/opensnowcat-collector-${{ matrix.platform }}${{ matrix.suffix }}
tags: |
type=raw,value=latest-distroless,enable=${{ !contains(steps.ver.outputs.project_version, 'rc') }}
type=raw,value=${{ steps.ver.outputs.project_version }}-distroless
flavor: |
latest=false
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push image
uses: docker/build-push-action@v6
with:
context: ${{ matrix.platform }}/target/docker/stage
file: ${{ matrix.platform }}/target/docker/stage/Dockerfile
platforms: linux/amd64,linux/arm64/v8
# tags: ${{ steps.meta.outputs.tags }}
tags: "ghcr.io/${{ github.repository }}/opensnowcat-collector-${{ matrix.platform }}${{ matrix.suffix }}:latest"
push: true
- name: Push distroless image
uses: docker/build-push-action@v6
with:
context: distroless/${{ matrix.platform }}/target/docker/stage
file: distroless/${{ matrix.platform }}/target/docker/stage/Dockerfile
platforms: linux/amd64,linux/arm64/v8
# tags: ${{ steps.distroless-meta.outputs.tags }}
tags: "ghcr.io/${{ github.repository }}/opensnowcat-collector-${{ matrix.platform }}${{ matrix.suffix }}:latest-distroless"
push: true