-
Notifications
You must be signed in to change notification settings - Fork 38
129 lines (114 loc) · 4.67 KB
/
docker-testbed.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
name: Build & Publish docker testbed
on:
# This job must be manually triggered to publish a new version usable from
# other CI runs.
# (see https://github.com/Scille/parsec-cloud/pkgs/container/parsec-cloud%2Fparsec-testbed-server)
workflow_dispatch:
pull_request:
paths:
# Testbed code also depends on `libparsec/**`, but this code change very often
# and we consider the server tests are good enough on this part.
- server/tests/scripts/run_testbed_server.py
- server/packaging/testbed-server/**
- .github/workflows/docker-testbed.yml
push:
branches:
- master
paths:
# Testbed code also depends on `libparsec/**`, but this code change very often
# and we consider the server tests are good enough on this part.
- server/tests/scripts/run_testbed_server.py
- server/packaging/testbed-server/**
- .github/workflows/docker-testbed.yml
permissions:
contents: write
packages: write
# We set `concurrency` to prevent having this workflow being run on code that is not up-to-date on a PR (a user make multiple push in a quick manner).
# But on the main branch, we don't want that behavior.
# Having the workflow run on each merge commit is something we would like, that could help us where a regression was made and missed by previous checks.
concurrency:
group: docker-testbed-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
docker-testbed:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin v4.1.1
timeout-minutes: 5
# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
- name: Log in to the Github Container registry
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get current version
id: version
shell: python
run: |
from misc.version_updater import TOOLS_VERSION, Tool
print(f"current={TOOLS_VERSION[Tool.Parsec]}")
- name: Generate build metadata
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
id: metadata
with:
images:
ghcr.io/scille/parsec-cloud/parsec-testbed-server
tags: |
type=raw,value=${{ steps.version.outputs.current }}+{{ date 'YYYYMMDD' }}.sha.{{ sha }}
flavor: |
latest=${{ github.event_name == 'workflow_dispatch' }}
- name: Build and export to Docker
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
id: build
with:
context: .
file: server/packaging/testbed-server/testbed-server.dockerfile
load: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: false
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Start docker test container
id: test-container
run: |
(
echo -n "id=";
docker run --detach --publish 6777:6777 --rm --name=parsec-testbed-server ${{ steps.build.outputs.imageid }}
) | tee $GITHUB_OUTPUT
- name: Test docker image
run: |
import time
from urllib.request import Request, urlopen
r = Request('http://127.0.0.1:6777/testbed/new/empty', method='POST')
for i in range(10):
try:
urlopen(r)
except Exception as exc:
print(f'Try {i + 1}/10: {exc}')
time.sleep(1)
continue
else:
break
else:
raise SystemExit('Cannot connect to testbed server :(')
shell: python
- name: Stop docker test container
run: |
docker container stop ${{ steps.test-container.outputs.id }}
docker container rm ${{ steps.test-container.outputs.id }}
- name: Build and publish
if: github.event_name == 'workflow_dispatch'
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
with:
context: .
file: server/packaging/testbed-server/testbed-server.dockerfile
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: true
cache-from: type=gha