1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-02-12 11:46:10 +02:00

Update CI Docker image

This commit is contained in:
DarthSim 2023-10-03 20:12:26 +03:00
parent ef77940062
commit 9e6a66deec
3 changed files with 12 additions and 2 deletions

View File

@ -9,6 +9,7 @@ RUN apt-get -qq update \
build-essential \
python3-pip \
python3-venv \
libssl-dev \
libglib2.0-dev \
libxml2-dev \
libjpeg-dev \
@ -29,6 +30,15 @@ RUN apt-get -qq update \
&& /root/.python/bin/pip install meson ninja \
&& rm -rf /var/lib/apt/lists/*
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y \
&& export PATH="/root/.cargo/bin:$PATH" \
&& cargo install cargo-c \
&& cd /root \
&& git clone --depth 1 https://github.com/DarthSim/quantizr.git \
&& cd quantizr \
&& cargo cinstall --release --library-type=cdylib \
&& rm -rf /root/.rustup /root/.cargo
ENV PATH="/root/.python/bin:$PATH"
RUN \

View File

@ -11,7 +11,7 @@ jobs:
lint:
runs-on: ubuntu-latest
container:
image: darthsim/imgproxy-ci:202309122140
image: darthsim/imgproxy-ci:202310031902
strategy:
matrix:
go-version: ["1.21.x"]

View File

@ -11,7 +11,7 @@ jobs:
test:
runs-on: ubuntu-latest
container:
image: darthsim/imgproxy-ci:202309122140
image: darthsim/imgproxy-ci:202310031902
strategy:
matrix:
go-version: ["1.21.x", "1.20.x", "1.19.x"]