Remove failed/abandoned workflows
All checks were successful
Verify Mac Runner / verify-runner (push) Successful in 0s
Check Buildah Build (Safe) / buildah-build (push) Successful in 15s

This commit is contained in:
2025-12-29 20:56:20 -06:00
parent 55a8da3727
commit 7a912264c7
2 changed files with 0 additions and 53 deletions

View File

@@ -1,21 +0,0 @@
name: Check Container Build Capability
on: [push, workflow_dispatch]
jobs:
check-build:
runs-on: macos-m1
container:
image: docker:cli
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Check Docker Info
run: |
echo "Checking connection to host Docker/Podman daemon..."
docker info
- name: Test Build
run: |
echo "FROM alpine" > Dockerfile
echo "RUN echo 'Build successful'" >> Dockerfile
docker build -t test-image .

View File

@@ -1,32 +0,0 @@
name: Check Kaniko Build (Safe)
on: [push, workflow_dispatch]
jobs:
kaniko-build:
runs-on: macos-m1
steps:
- name: Install Dependencies
run: |
if [ -f /etc/alpine-release ]; then
apk add --no-cache nodejs git curl
fi
- name: Checkout
uses: actions/checkout@v4
- name: Create Dockerfile
run: |
echo "FROM alpine" > Dockerfile
echo "RUN echo 'Kaniko build successful'" >> Dockerfile
- name: Build with Kaniko
run: |
# Download Kaniko executor binary
curl -LO https://github.com/GoogleContainerTools/kaniko/releases/download/v1.23.2/executor-linux-arm64
chmod +x executor-linux-arm64
# Run Kaniko directly
./executor-linux-arm64 \
--context . \
--dockerfile Dockerfile \
--no-push