1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-22 16:01:49 +00:00

Merge pull request #10 from imjasonh/fix/alpine-base-ci-path

fix: Correct alpine-base example path in CI
This commit is contained in:
Jason Hall 2025-06-08 08:53:17 -04:00 committed by GitHub
commit 5acbc21b3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -120,7 +120,6 @@ jobs:
integration: integration:
name: Integration Test name: Integration Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test, fmt, clippy, security-audit] # Only run after other tests pass
services: services:
registry: registry:
image: registry:2 image: registry:2
@ -187,7 +186,6 @@ jobs:
extended-platforms: extended-platforms:
name: Extended Platform Support name: Extended Platform Support
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test, fmt, clippy, security-audit] # Only run after basic tests pass
steps: steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Rust - name: Install Rust
@ -221,8 +219,7 @@ jobs:
- name: Test multi-platform build with Alpine base - name: Test multi-platform build with Alpine base
run: | run: |
# Test that platform detection works (even if we can't build all platforms) # Test that platform detection works (even if we can't build all platforms)
cd example/alpine-base ./target/release/krust build --no-push --image test.local/alpine-test:latest ./example/alpine-base 2>&1 | tee build.log
../target/release/krust build --no-push --image test.local/alpine-test:latest . 2>&1 | tee build.log
# Verify platform detection happened # Verify platform detection happened
grep -q "Detecting available platforms from base image: alpine:latest" build.log grep -q "Detecting available platforms from base image: alpine:latest" build.log