Compare commits

..

No commits in common. "8bc1fee17d901f6003e3270af3cf1ddb689ba523" and "e684533f8e695c65f2dbbb92dc1a318b9bf313c4" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View file

@ -6,16 +6,16 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Test - name: Test
uses: https://git.kemitix.net/kemitix/rust@v0.2.6 uses: https://git.kemitix.net/kemitix/rust@v0.2.5
with: with:
args: test args: test
- name: Build - name: Build
uses: https://git.kemitix.net/kemitix/rust@v0.2.6 uses: https://git.kemitix.net/kemitix/rust@v0.2.5
with: with:
args: build args: build
- name: Run - name: Run
uses: https://git.kemitix.net/kemitix/rust@v0.2.6 uses: https://git.kemitix.net/kemitix/rust@v0.2.5
with: with:
args: run args: run

View file

@ -3,7 +3,7 @@ FROM docker.io/rust:1.78.0-slim-bookworm
# nodejs - runtime used by forgejo/github actions # nodejs - runtime used by forgejo/github actions
# curl - to download cargo-binstall # curl - to download cargo-binstall
# clang-16 & mold - faster linkers for rust # clang-16 & mold - faster linkers for rust
# pkg-config - required to compile some rust `-sys` packages # libssl-dev - build dependency for git-next
RUN apt-get update \ RUN apt-get update \
&& \ && \
apt-get install -y \ apt-get install -y \
@ -12,7 +12,7 @@ RUN apt-get update \
curl=7.88.1-10+deb12u5 \ curl=7.88.1-10+deb12u5 \
clang-16=1:16.0.6-15~deb12u1 \ clang-16=1:16.0.6-15~deb12u1 \
mold=1.10.1+dfsg-1 \ mold=1.10.1+dfsg-1 \
pkg-config=1.8.1-1 \ libssl-dev=3.0.11-1~deb12u2 \
&& \ && \
rm -r /var/lib/apt/lists/* rm -r /var/lib/apt/lists/*

View file

@ -12,10 +12,10 @@ jobs:
test: test:
runs-on: docker runs-on: docker
steps: steps:
- uses: https://git.kemitix.net/kemitix/rust@v0.2.6 - uses: https://git.kemitix.net/kemitix/rust@v0.2.5
with: with:
args: test args: test
- uses: https://git.kemitix.net/kemitix/rust@v0.2.6 - uses: https://git.kemitix.net/kemitix/rust@v0.2.5
with: with:
args: build args: build
``` ```