-
Notifications
You must be signed in to change notification settings - Fork 71
39 lines (31 loc) · 1.09 KB
/
container-smoke-test.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
name: Smoke test Docker image
on:
pull_request:
push:
branches: [ main ]
jobs:
smoke-test-container:
runs-on: ubuntu-latest
env:
BUILDKIT_PROGRESS: plain
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Need fetch-depth 0 to fetch tags, see https://github.com/actions/checkout/issues/701
with:
fetch-depth: 0
- name: Install requirements
run: make install
- name: Resolve Karapace version
run: |
source ./venv/bin/activate
KARAPACE_VERSION=$(python -c "from karapace import version; print(version.__version__)")
echo KARAPACE_VERSION=$KARAPACE_VERSION >> $GITHUB_ENV
- name: Build container
run: docker build --build-arg KARAPACE_VERSION=${{ env.KARAPACE_VERSION }} --file=container/Dockerfile .
- name: Run container
run: docker compose --file=container/compose.yml up --build --wait --detach
- name: Smoke test registry
run: bin/smoke-test-registry.sh
- name: Smoke test REST proxy
run: bin/smoke-test-rest.sh