Skip to content

Commit

Permalink
Enable rockylinux9 deployment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
giffels committed Jul 15, 2022
1 parent d3576d1 commit a51f8e0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
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', 'centosstream8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04', 'ubuntu22_04']
os_container: ['centos7', 'centosstream8', 'rockylinux8', 'rockylinux9', 'ubuntu20_04', 'ubuntu18_04', 'ubuntu22_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', 'centosstream8', 'rockylinux8', 'ubuntu20_04', 'ubuntu18_04', 'ubuntu22_04']
os_container: ['centos7', 'centosstream8', 'rockylinux8', 'rockylinux9', 'ubuntu20_04', 'ubuntu18_04', 'ubuntu22_04']
container: matterminers/cobald-tardis-deployment-test-env:${{ matrix.os_container }}
steps:
- uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM rockylinux:9
LABEL maintainer="Manuel Giffels <[email protected]>"

RUN yum -y install epel-release curl && yum clean all

RUN curl -sL https://rpm.nodesource.com/setup_18.x | bash -

RUN yum -y update \
&& yum -y install git \
python3 \
gcc \
python3-devel \
nodejs \
glibc-langpack-en \
&& yum clean all

SHELL [ "/bin/bash", "--noprofile", "--norc", "-e", "-o", "pipefail", "-c" ]
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 2022-07-14, command
.. Created by changelog.py at 2022-07-15, 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] - 2022-07-14
[Unreleased] - 2022-07-15
=========================

Added
Expand Down

0 comments on commit a51f8e0

Please sign in to comment.