Skip to content

fix: align ContainerInfo fields with inspect format template (#11) #25

fix: align ContainerInfo fields with inspect format template (#11)

fix: align ContainerInfo fields with inspect format template (#11) #25

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- 'src/**'
- 'pom.xml'
- '.github/workflows/ci.yml'
pull_request:
paths:
- 'src/**'
- 'pom.xml'
- '.github/workflows/ci.yml'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Build and Test (JVM)
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '25'
distribution: 'temurin'
cache: maven
- name: Run unit tests
run: mvn test -B
native-linux-arm64:
name: Native image — linux/arm64
runs-on: ubuntu-24.04-arm
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '25'
distribution: 'graalvm-community'
cache: maven
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build native binary
run: mvn clean package -Pnative -DskipTests -B
- name: Smoke test — version
run: ./target/floci version
- name: Smoke test — doctor
run: ./target/floci doctor || true