Compare commits

..

2 commits

Author SHA1 Message Date
b8b8d82104 Version set to v0.2.7
All checks were successful
/ test (push) Successful in 4s
2024-05-17 07:24:49 +01:00
18ba93c44e Revert "Revert "add libssl-dev as dependency""
This reverts commit b4a93ca669.
2024-05-17 07:23:55 +01:00
3 changed files with 7 additions and 5 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.7
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.7
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.7
with: with:
args: run args: run

View file

@ -4,6 +4,7 @@ FROM docker.io/rust:1.78.0-slim-bookworm
# 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 # 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 \
@ -13,6 +14,7 @@ RUN apt-get update \
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 \ 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.7
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.7
with: with:
args: build args: build
``` ```