-
Notifications
You must be signed in to change notification settings - Fork 8
137 lines (127 loc) · 5.11 KB
/
ci-cd.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
name: CI/CD
on:
push:
schedule:
- cron: 37 0 * * *
jobs:
test:
name: Run CI Tests & Linters
runs-on: [ self-hosted, docker ]
steps:
- name: Checkout maintenance/v2 branch
if: github.event_name == 'schedule'
uses: actions/[email protected]
with:
ref: maintenance/v2
- name: Checkout code
if: github.event_name != 'schedule'
uses: actions/[email protected]
- uses: docker/[email protected]
with:
install: true
- name: Run integration tests
run: script/run-in-docker.sh make ci
- name: Notify Slack fail
if: startsWith(github.ref, 'refs/heads/maintenance/') && failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v2
with:
channel_id: CNCH08G14 # development channel
status: FAILED
color: danger
# debug:
# needs: test
# runs-on: [self-hosted, docker]
# steps:
# - run: echo "$GITHUB_CONTEXT"
# env:
# GITHUB_CONTEXT: ${{ toJson(github) }}
# All of this Docker stuff copied from:
# https://github.com/marketplace/actions/build-and-push-docker-images#complete-workflow
docker:
runs-on: [ self-hosted, docker ]
needs: test
steps:
- name: Checkout maintenance/v2 branch
if: github.event_name == 'schedule'
uses: actions/[email protected]
with:
ref: maintenance/v2
- name: Checkout code
if: github.event_name != 'schedule'
uses: actions/[email protected]
- name: Prep Docker
id: prep
run: |
DOCKER_IMAGE=fluree/ledger
VERSION=none
if [[ $GITHUB_REF =~ ^refs/tags/v[[:digit:]]+ ]]; then
VERSION=${GITHUB_REF#refs/tags/v}
elif [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/}
elif [[ $GITHUB_REF == refs/heads/main ]]; then
VERSION=main
# Uncomment to tag every branch
#elif [[ $GITHUB_REF == refs/heads/* ]]; then
# VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')
# Uncomment to tag every pr with pr-[num]
#elif [[ $GITHUB_REF == refs/pull/* ]]; then
# VERSION=pr-${{ github.event.number }}
fi
TAGS="${DOCKER_IMAGE}:${VERSION}"
# Tag with major version, minor version, and 'latest'
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
MINOR=${VERSION%.*}
MAJOR=${MINOR%.*}
TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR},${DOCKER_IMAGE}:${MAJOR},${DOCKER_IMAGE}:latest"
fi
# Tag with alpha, beta, or rc if present
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}-(alpha|beta|rc)[0-9]{1,3}$ ]]; then
TAGS="${TAGS},${DOCKER_IMAGE}:${BASH_REMATCH[1]}"
fi
#if [[ "${{ github.event_name }}" == "push" ]]; then
# TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
#fi
echo ::set-output name=version::${VERSION}
echo ::set-output name=tags::${TAGS}
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- name: Setup QEMU
uses: docker/[email protected]
- name: Setup Docker buildx
uses: docker/[email protected]
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Cache Docker layers
uses: actions/[email protected]
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and push Docker image
id: docker_build
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' && steps.prep.outputs.tags != 'fluree/ledger:none' }}
tags: ${{ steps.prep.outputs.tags }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
secrets: |
GIT_AUTH_TOKEN=${{ github.token }}
labels: |
org.opencontainers.image.title=${{ github.event.repository.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.version=${{ steps.prep.outputs.version }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}