|
@@ -0,0 +1,36 @@
|
|
|
|
|
+# CI containers
|
|
|
|
|
+
|
|
|
|
|
+Prebuilt images intended to speed up GitHub Actions jobs by baking in
|
|
|
|
|
+large, slow-to-install dependencies. These are designed for Linux jobs
|
|
|
|
|
+that can use `job.container` in workflows.
|
|
|
|
|
+
|
|
|
|
|
+Images
|
|
|
|
|
+
|
|
|
|
|
+- `base`: Ubuntu 24.04 with common build tools and utilities
|
|
|
|
|
+- `bun-node`: `base` plus Bun and Node.js 24
|
|
|
|
|
+- `rust`: `bun-node` plus Rust (stable, minimal profile)
|
|
|
|
|
+- `tauri-linux`: `rust` plus Tauri Linux build dependencies
|
|
|
|
|
+- `publish`: `bun-node` plus Docker CLI and AUR tooling
|
|
|
|
|
+
|
|
|
|
|
+Build
|
|
|
|
|
+
|
|
|
|
|
+```
|
|
|
|
|
+REGISTRY=ghcr.io/anomalyco TAG=24.04 bun ./packages/containers/script/build.ts
|
|
|
|
|
+```
|
|
|
|
|
+
|
|
|
|
|
+Workflow usage
|
|
|
|
|
+
|
|
|
|
|
+```
|
|
|
|
|
+jobs:
|
|
|
|
|
+ build-cli:
|
|
|
|
|
+ runs-on: ubuntu-latest
|
|
|
|
|
+ container:
|
|
|
|
|
+ image: ghcr.io/anomalyco/build/bun-node:24.04
|
|
|
|
|
+```
|
|
|
|
|
+
|
|
|
|
|
+Notes
|
|
|
|
|
+
|
|
|
|
|
+- These images only help Linux jobs. macOS and Windows jobs cannot run
|
|
|
|
|
+ inside Linux containers.
|
|
|
|
|
+- If a job uses Docker Buildx, the container needs access to the host
|
|
|
|
|
+ Docker daemon (or `docker-in-docker` with privileged mode).
|