Skip to content

Commit

Permalink
build: ensure podman service is active
Browse files Browse the repository at this point in the history
  • Loading branch information
shoenig committed Dec 12, 2023
1 parent a266a35 commit ea4cc10
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/machinesetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,9 @@ apt-get update
apt-get install -y ca-certificates podman curl build-essential

echo "====== Install catatonit"
curl -v -L -o /usr/local/bin/catatonit https://github.com/openSUSE/catatonit/releases/download/v0.1.7/catatonit.x86_64
curl -s -S -L -o /usr/local/bin/catatonit https://github.com/openSUSE/catatonit/releases/download/v0.1.7/catatonit.x86_64
chmod +x /usr/local/bin/catatonit

echo "====== Podman info"
podman version
podman info

echo "====== Setup archives"
podman pull alpine:3
podman save --format docker-archive --output /tmp/docker-archive alpine:3
Expand All @@ -30,3 +26,10 @@ unqualified-search-registries = ["docker.io", "quay.io"]
location = "localhost:5000"
insecure = true
EOF

echo "====== Podman info"
sysctl start podman
sysctl status podman
podman version
podman info

0 comments on commit ea4cc10

Please sign in to comment.