Skip to content

Commit 8b7c6ea

Browse files
committed
Replace centos with redhat.
1 parent a3bb881 commit 8b7c6ea

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/jobs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
make all
127127
make test
128128
make coveralls
129-
docker_centos:
129+
docker_redhat:
130130
runs-on: ubuntu-latest
131131
steps:
132132
- name: Clone and check out repository code
@@ -139,10 +139,12 @@ jobs:
139139
git log -1
140140
- name: Update OS
141141
run: sudo apt-get update
142-
- name: Login to Docker Hub
143-
run: sudo docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_TOKEN }}"
142+
- name: Install OS
143+
# The podman container engine replaced docker as the preferred, maintained, and supported container
144+
# runtime of choice for Red Hat Enterprise Linux 8 systems.
145+
run: sudo apt-get install podman
144146
- name: Run job
145-
run: ./scripts/travis_centos.sh
147+
run: podman run --rm --name=myubi registry.access.redhat.com/ubi8/ubi cat /etc/os-release
146148
docker_fedora:
147149
runs-on: ubuntu-latest
148150
steps:

0 commit comments

Comments
 (0)