Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker container for deployment tests #226

Merged
merged 2 commits into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deployment-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
os_container: ['centos7', 'centos8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
os_container: ['centos7', 'centosstream8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
os_container: ['centos7', 'centos8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
os_container: ['centos7', 'centosstream8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04']
container: matterminers/cobald-tardis-deployment-test-env:${{ matrix.os_container }}
steps:
- uses: actions/checkout@v2
Expand Down
17 changes: 0 additions & 17 deletions containers/cobald-tardis-deployment-test-env/Dockerfile.centos8

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM quay.io/centos/centos:stream8
LABEL maintainer="Manuel Giffels <giffels@gmail.com>"

RUN dnf -y module enable nodejs:12

RUN dnf -y update \
&& dnf -y install git \
python39 \
gcc-8.5.0-7.el8 \
python39-devel \
nodejs \
glibc-langpack-en \
&& dnf clean all

SHELL [ "/bin/bash", "--noprofile", "--norc", "-e", "-o", "pipefail", "-c" ]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rockylinux/rockylinux:8
FROM rockylinux:8
LABEL maintainer="Manuel Giffels <giffels@gmail.com>"

RUN yum -y install epel-release curl && yum clean all
Expand Down
4 changes: 2 additions & 2 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.. Created by changelog.py at 2021-11-30, command
.. Created by changelog.py at 2022-01-28, command
'/Users/giffler/.cache/pre-commit/repor6pnmwlm/py_env-default/bin/changelog docs/source/changes compile --output=docs/source/changelog.rst'
based on the format of 'https://keepachangelog.com/'

#########
CHANGELOG
#########

[Unreleased] - 2021-11-30
[Unreleased] - 2022-01-28
=========================

Changed
Expand Down