-
Notifications
You must be signed in to change notification settings - Fork 9
98 lines (95 loc) · 3.05 KB
/
sleeper.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
name: Github-CI Push/PR sleeper
on:
push:
paths:
- "services/sleeper/**"
- "!**.md"
pull_request:
paths:
- "services/sleeper/**"
- "!**.md"
env:
# secrets can be set in settings/secrets on github
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
jobs:
build:
name: building sleeper
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: [3.11]
os: [ubuntu-22.04]
node: [16]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: setup python environment
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: "pip"
cache-dependency-path: "**/requirements.txt"
- name: install uv
uses: yezz123/setup-uv@v1
- name: show versions
run: ./ci/helpers/show_system_versions.bash
- name: set owner variable
run: echo "OWNER=${GITHUB_REPOSITORY%/*}" >> $GITHUB_ENV
- name: set docker image tag
if: github.ref != 'refs/heads/master'
run: echo "DOCKER_IMAGE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: set dev environs
working-directory: "services/sleeper"
run: make devenv
- name: get current image if available
working-directory: "services/sleeper"
run: make pull-latest || true
- name: build
working-directory: "services/sleeper"
run: |
make build
make info-build
- name: test
working-directory: "services/sleeper"
run: make tests
- if: github.event_name == 'push' && github.ref == 'refs/heads/master'
name: deploy
working-directory: "services/sleeper"
run: |
./../../ci/helpers/dockerhub_login.bash
make push
- if: github.event_name == 'push' && github.ref != 'refs/heads/master'
name: deploy
working-directory: "services/sleeper"
run: |
./../../ci/helpers/dockerhub_login.bash
make push-version
- name: set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: setup docker buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: ${{ matrix.docker_buildx }}
driver: docker-container # a must for multi-arch buildsplatform
- name: build and deploy image for multi-arch
if: github.event_name == 'push'
working-directory: "services/sleeper"
env:
DOCKER_TARGET_PLATFORMS: linux/amd64,linux/arm/v7,linux/arm64
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
run: |
make build push=1
- name: build image for multi-arch
if: github.event_name == 'pull_request'
working-directory: "services/sleeper"
env:
DOCKER_TARGET_PLATFORMS: linux/amd64,linux/arm/v7,linux/arm64
run: |
make build