Switch to Buildah for container builds #51

Merged
eblume merged 30 commits from feature/p5-container-builds into main 2026-01-24 13:30:26 -08:00
Showing only changes of commit a3a61146a3 - Show all commits

Fix SIGPIPE in test workflow by adding || true to piped commands
All checks were successful
Test CI / test (pull_request) Successful in 3s

Erich Blume 2026-01-23 21:14:02 -08:00

View file

@ -23,15 +23,15 @@ jobs:
git --version
echo ""
echo "=== Build tools ==="
make --version | head -1
gcc --version | head -1
make --version 2>&1 | head -1 || true
gcc --version 2>&1 | head -1 || true
echo ""
echo "=== Container tools (Buildah) ==="
buildah --version
podman --version
echo ""
echo "=== Other tools ==="
curl --version | head -1
curl --version 2>&1 | head -1 || true
jq --version
- name: Show repo info