-
Notifications
You must be signed in to change notification settings - Fork 9
141 lines (119 loc) · 3.85 KB
/
build-and-release.yaml
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
name: Build and Release
on:
push:
branches:
- '*'
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
DOCKERHUB_NAMESPACE: closeio
PROJECT: sync-engine
jobs:
static-code-analysis:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12.3'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --no-deps -r requirements/requirements-lint.txt
- name: Black
run: black --check .
- name: Ruff
run: ruff check --no-cache --output-format github .
check-compiled-requirements:
runs-on: ubuntu-24.04
if: ${{ !contains(github.event.head_commit.message, '#notests') }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-python@v5
with:
python-version: '3.12.3'
- name: Prepare environment
run: |
pip install --no-deps -r requirements/requirements-pip.txt
pip install $(grep -rwoh requirements -e 'pip-tools==.*[^\]' | head -n 1)
- name: Compile Requirements Files
run: |
./scripts/pip-compile-all.sh
- name: Check If Output Matches Committed
run: |
DIFF="$(git diff)"
if [ "$DIFF" ]; then
echo "Compiled requirements differ from committed requirements!"
echo "$DIFF"
exit 1
fi
build:
runs-on: ${{ matrix.runs-on }}
strategy:
matrix:
include:
- arch: amd64
runs-on: ubuntu-24.04
- arch: arm64
runs-on: gh-arm64-runners
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare environment
run: |
if [ "$(git log -1 --pretty=%B | head -n 1 | grep '#notests')" ]; then
echo 'SKIP_TESTS="1"' >> $GITHUB_ENV
fi
DOCKER_IMAGE_TAG=${{ env.DOCKERHUB_NAMESPACE }}/${{ env.PROJECT }}:${{ github.sha }}
if [ "${{ matrix.arch }}" = "arm64" ]; then
DOCKER_IMAGE_TAG="${DOCKER_IMAGE_TAG}-arm64"
fi
echo "DOCKER_IMAGE_TAG=${DOCKER_IMAGE_TAG}" >> $GITHUB_ENV
shell: bash
- name: Set up Docker context for Buildx
id: buildx-context
run: |
docker context create container-builder
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
endpoint: container-builder
- name: Login to DockerHub
# if: ${{ github.ref == 'master' && github.event.pull_request.merged == true }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push sync-engine images
uses: docker/build-push-action@v5
with:
platforms: linux/${{ matrix.arch }}
push: false
load: true
tags: |
${{ env.DOCKER_IMAGE_TAG }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run tests
run: |
docker tag ${{ env.DOCKER_IMAGE_TAG }} ${{ env.PROJECT }}_app
if [[ -z $SKIP_TESTS ]]; then
docker compose run app bash -ec '
bin/wait-for-it.sh mysql:3306 \
&& NYLAS_ENV=test pytest --cov-report= --cov=inbox tests/ \
&& coverage html -d pythoncov
'
else
echo Skipping tests
fi
if: ${{ matrix.arch == 'amd64' }}
- name: Push image
run: |
docker push ${{ env.DOCKER_IMAGE_TAG }}