Skip to content

Commit

Permalink
Goodbye F32, welcome F34
Browse files Browse the repository at this point in the history
Signed-off-by: Mattia Verga <mattia.verga@tiscali.it>
  • Loading branch information
mattiaverga committed Mar 14, 2021
1 parent b7ffcf6 commit 6f5d36d
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ pull_request_rules:
- label!=WIP
- approved-reviews-by=@fedora-infra/bodhi
- status-success=DCO
- status-success=f32-docs
- status-success=f32-unit
- status-success=f32-diff-cover
- status-success=f33-docs
- status-success=f33-unit
- status-success=f33-diff-cover
- status-success=f34-docs
- status-success=f34-unit
- status-success=f34-diff-cover
- status-success=pip-docs
- status-success=pip-flake8
- status-success=pip-mypy
Expand Down
6 changes: 3 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ end
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/32/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-32-1.6.x86_64.vagrant-libvirt.box"
config.vm.box = "f32-cloud-libvirt"
config.vm.box_download_checksum = "4b13243d39760e59f98078c440d119ccf2699f82128b89daefac02dc99446360"
config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/33/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-33-1.2.x86_64.vagrant-libvirt.box"
config.vm.box = "f33-cloud-libvirt"
config.vm.box_download_checksum = "455767b8ac4d8a4820e186f9674c3b3ef2c5edd65141326b1224dcbc3b9dd1b4"
config.vm.box_download_checksum_type = "sha256"

# Forward traffic on the host to the development server on the guest.
Expand Down
5 changes: 3 additions & 2 deletions devel/ci/Dockerfile-f32 → devel/ci/Dockerfile-f34
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.fedoraproject.org/fedora:32
FROM registry.fedoraproject.org/fedora:rawhide
LABEL maintainer="Randy Barlow <bowlofeggs@fedoraproject.org>"

RUN dnf install -y \
RUN dnf install --disablerepo rawhide-modular -y \
createrepo_c \
fedora-messaging \
findutils \
Expand Down Expand Up @@ -46,6 +46,7 @@ RUN dnf install -y \
python3-sqlalchemy_schemadisplay \
python3-waitress \
python3-webtest \
python3-wheel \
python3-whitenoise \
python3-yaml &&\
pip-3 install graphene graphene-sqlalchemy WebOb-GraphQL koji
Expand Down
2 changes: 1 addition & 1 deletion devel/ci/Dockerfile-pip
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:33
FROM registry.fedoraproject.org/fedora:latest
LABEL maintainer="Randy Barlow <bowlofeggs@fedoraproject.org>"

RUN dnf install -y \
Expand Down
2 changes: 1 addition & 1 deletion devel/ci/bodhi-ci
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ CONTAINER_LABEL = 'purpose=bodhi-ci-{}'.format(uuid.uuid4())
# This template is used to generate the summary lines that are printed out at the end.
LABEL_TEMPLATE = '{:>8}-{:<34}'
PROJECT_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
RELEASES = ('f32', 'f33', 'rawhide', 'pip')
RELEASES = ('f33', 'f34', 'rawhide', 'pip')
INTEGRATION_APPS = ("resultsdb", "waiverdb", "greenwave", "rabbitmq", "ipsilon")


Expand Down
4 changes: 2 additions & 2 deletions devel/ci/cico.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -161,16 +161,16 @@ node('bodhi') {

try {
parallel(
f32: {test_release('f32')},
f33: {test_release('f33')},
f34: {test_release('f34')},
pip: {test_release('pip')},
rawhide: {test_release('rawhide')},
)
} catch(error) {
failed = error
}

def releases = ['f32', 'f33', 'pip', 'rawhide']
def releases = ['f33', 'f34', 'pip', 'rawhide']
for (release in releases) {
try {
bodhi_ci(release, 'integration', 'integration', '--no-build --no-init')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bodhi-ci/f32
FROM bodhi-ci/f34
LABEL \
name="bodhi-web" \
vendor="Fedora Infrastructure" \
Expand All @@ -21,7 +21,7 @@ RUN dnf install -y \
RUN groupadd -r bodhi && \
useradd -r -s /sbin/nologin -d /home/bodhi/ -m -c 'Bodhi Server' -g bodhi bodhi
# Install it
RUN python3 setup.py build && pip3 install --no-use-pep517 . && pip3 install koji
RUN python3 setup.py bdist_wheel && pip3 install ./dist/*.whl && pip3 install koji

# Configuration
RUN mkdir -p /etc/bodhi
Expand Down
2 changes: 1 addition & 1 deletion devel/ci/integration/rabbitmq/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:32
FROM registry.fedoraproject.org/fedora:latest
LABEL \
name="rabbitmq" \
vendor="Fedora Infrastructure" \
Expand Down
2 changes: 1 addition & 1 deletion devel/ci/integration/resultsdb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:32
FROM registry.fedoraproject.org/fedora:latest
LABEL \
name="resultsdb" \
vendor="Fedora Infrastructure" \
Expand Down

0 comments on commit 6f5d36d

Please sign in to comment.