This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
84 lines (69 loc) · 2.24 KB
/
merge_to_master.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
name: update_upgrade_image
on:
push:
branches:
- master
- 6.*.z
env:
PYCURL_SSL_LIBRARY: gnutls
jobs:
codechecks:
name: Code Quality
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout satellite6-upgrade
uses: actions/checkout@v4
- name: Set Up Python-${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get install -y libgnutls28-dev libcurl4-openssl-dev libssl-dev
pip install -r requirements.txt -r requirements-optional.txt
for config in conf/*.yaml.template; do mv -- "$config" "${config%.template}"; done
- name: Pre Commit Checks
uses: pre-commit/[email protected]
- name: Upgrade Test Coverage (Existence Test)
run: py.test --cov=upgrade_tests/helpers upgrade_tests/helpers/coverme.py
- name: Make Docs
run: |
make test-docstrings
make docs
upgrade_container:
needs: codechecks
name: Update Upgrade Container image on Quay.
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get image tag
id: image_tag
run: |
echo -n ::set-output name=IMAGE_TAG::
TAG="${GITHUB_REF##*/}"
if [ "${TAG}" == "master" ]; then
TAG="latest"
fi
echo "${TAG}"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Quay Container Registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.QUAY_SERVER }}
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push image to Quay
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.QUAY_SERVER }}/${{ secrets.QUAY_NAMESPACE }}/upgrade:${{ steps.image_tag.outputs.IMAGE_TAG }}