First implementation
All checks were successful
/ test (push) Successful in 53s

This commit is contained in:
Paul Campbell 2024-05-16 18:52:20 +01:00
parent f73149ed75
commit 87fe665095
4 changed files with 92 additions and 2 deletions

View file

@ -0,0 +1,9 @@
on: [push]
jobs:
test:
runs-on: docker
steps:
- name: Test Rust image
uses: https://git.kemitix.net/kemitix/rust@v0.1.0
with:
args: test

26
Dockerfile Normal file
View file

@ -0,0 +1,26 @@
FROM docker.io/rust:1.78.0-slim-bookworm
# nodejs - runtime used by forgejo/github actions
# curl - to download cargo-binstall
# clang-16 & mold - faster linkers for rust
RUN apt-get update && \
apt-get install -y \
--no-install-recommends \
nodejs \
curl=7.88.1-10+deb12u5 \
clang-16=1:16.0.6-15~deb12u1 \
mold=1.10.1+dfsg-1 && \
rm -r /var/lib/apt/lists/*
RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \
tar -xzf cargo-binstall.tgz && \
rm cargo-binstall.tgz && \
mv cargo-binstall /usr/local/bin/
RUN cargo binstall -y cargo-chef
RUN rustup component add rustfmt clippy
COPY entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]

View file

@ -1,3 +1,51 @@
# docker-builders
# docker-builder-rust
Builder images for use by forgejo actions.
Docker image for building Rust projects with Cargo.
## Usage
In a Forgejo action file, e.g. `.forgejo/workflows/test.yml`:
```yml
on: [push]
jobs:
test:
runs-on: docker
steps:
- uses: https://git.kemitix.net/kemitix/rust@main
with:
args: test
- uses: https://git.kemitix.net/kemitix/rust@main
with:
args: build
```
## Contents
- nodejs
- clang-16
- mold
- rust
- cargo
- cargo-binstall
## Linking
To take advantage of the clang and mold packages, add the following to the `.cargo/config.toml` file in your project.
```toml
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang-16"
rustflags = ["-C", "link-arg=--ld-path=/usr/bin/mold"]
```
## Binary size
To reduce the size of the debug binary, add the following to the `.cargo/config.toml` file in you project.
```toml
[profile.dev]
debug = 0
strip = "debuginfo"
```

7
entrypoint.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -e
# set
ls -l
echo cargo ${INPUT_ARGS}