File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments