diff --git a/.gitea/workflows/build-check.yaml b/.gitea/workflows/build-check.yaml deleted file mode 100644 index ad94bcc..0000000 --- a/.gitea/workflows/build-check.yaml +++ /dev/null @@ -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 . diff --git a/.gitea/workflows/kaniko-check.yaml b/.gitea/workflows/kaniko-check.yaml deleted file mode 100644 index f877512..0000000 --- a/.gitea/workflows/kaniko-check.yaml +++ /dev/null @@ -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