switch to alpine as base image.
Some checks failed
/ test (map[name:nightly]) (push) Failing after 15s
/ test (map[name:stable]) (push) Failing after 15s
/ test (map[name:v1.81.0]) (push) Failing after 16s

This commit is contained in:
silvana 2024-11-29 06:10:57 +01:00
parent 1e5a6defe2
commit f84f054c57
Signed by: silvana
GPG key ID: 889CA3FB0F54CDCC
3 changed files with 23 additions and 35 deletions

View file

@ -16,31 +16,31 @@ jobs:
- uses: actions/checkout@v4
- name: Machete
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
uses: https://git.ragarock.moe/silvana/setup-rust@v2.4.1
with:
args: cargo machete
- name: Format
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
uses: https://git.ragarock.moe/silvana/setup-rust@v2.4.1
with:
args: ${{ matrix.toolchain.name }} cargo fmt --check
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
uses: https://git.ragarock.moe/silvana/setup-rust@v2.4.1
with:
args: ${{ matrix.toolchain.name }} cargo clippy
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
uses: https://git.ragarock.moe/silvana/setup-rust@v2.4.1
with:
args: ${{ matrix.toolchain.name }} cargo test
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
uses: https://git.ragarock.moe/silvana/setup-rust@v2.4.1
with:
args: ${{ matrix.toolchain.name }} cargo build
- name: Run
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
uses: https://git.ragarock.moe/silvana/setup-rust@v2.4.1
with:
args: ${{ matrix.toolchain.name }} cargo run

View file

@ -1,33 +1,21 @@
FROM docker.io/rust:1.82.0-slim-bookworm
FROM rust:1.82-alpine3.20
# nodejs - runtime used by forgejo/github actions
# curl - to download cargo-binstall
# clang-16 & mold - faster linkers for rust
# pkg-config - required to compile some rust `-sys` packages
# libssl-dev - build dependency for git-next
# libdbus-1-dev - linux os interop (e.g. desktop notifications)
# git - git
RUN apt-get update \
&& \
apt-get satisfy -y "nodejs (>=18.19.0), curl (>=7.88.1), pkg-config (>=1.8.1), libssl-dev (>=3.0.14), git (>=2.39.2), libdbus-1-dev (>= 1.14.10), libtag1-dev (>= 1.13), libtagc0-dev (>= 1.13), xorg-dev (>=7.7), libxcb-shape0-dev (>=0.15), libxcb-xfixes0-dev (>=0.15)" \
&& \
rm -r /var/lib/apt/lists/*
RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/download/v1.10.12/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@0.1 \
cargo-hack@0.6 \
cargo-machete@0.7 \
cargo-mutants@24.11 \
release-plz@0.3
RUN apk update && \
apk upgrade && \
apk add git \
bash \
nodejs \
clang \
mold \
musl-dev \
pkgconfig \
openssl-dev \
pcc-libs-dev && \
cargo install cargo-chef \
cargo-hack \
cargo-machete \
cargo-mutants
COPY entrypoint.sh /
RUN git config --global user.email "action@git.kemitix.net" && \
git config --global user.name "ForgeJo Action. See: https://git.kemitix.net/kemitix/rust"
ENTRYPOINT [ "/entrypoint.sh" ]

View file

@ -47,4 +47,4 @@ COMMAND=$(
# execute command
echo ">>> ${PRE_COMMAND} ${COMMAND}"
${PRE_COMMAND} ${COMMAND}
${PRE_COMMAND} "${COMMAND}"