Skip to content

feat: add ubuntu 26.04 profile and image; bake base tools into prebui… #139

feat: add ubuntu 26.04 profile and image; bake base tools into prebui…

feat: add ubuntu 26.04 profile and image; bake base tools into prebui… #139

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- run: rustup target add x86_64-unknown-linux-musl
- run: cargo fmt --check
- run: cargo clippy --workspace --all-targets -- -D warnings
- run: cargo test --workspace
build:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@stable
- run: rustup target add x86_64-unknown-linux-musl
- run: cargo build --release
- uses: actions/upload-artifact@v4
with:
name: podbox-${{ github.ref_name }}
path: target/release/podbox