Skip to content

Commit

Permalink
Update clambc-compiler version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
micahsnyder committed Feb 13, 2024
1 parent 78f2217 commit 872f61e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update -y && \
make DESTDIR="/clambc" install && \
ctest -V

FROM registry.hub.docker.com/library/ubuntu:22.04
FROM registry.hub.docker.com/library/ubuntu:23.04

ENV DEBIAN_FRONTEND=noninteractive
ENV CC=clang-16
Expand All @@ -48,6 +48,6 @@ COPY --from=builder "/clambc" "/"
RUN apt-get -y update && \
apt install -y \
python3 \
clang-8 \
clang-16 \
&& \
rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ properties([
string(name: 'NAMESPACE', defaultValue: 'clamav', description: 'The docker namespace to use'),
string(name: 'IMAGE_NAME', defaultValue: 'clambc-compiler', description: 'The docker image name to use'),
string(name: 'REPOSITORY', defaultValue: 'https://github.com/Cisco-Talos/clamav-bytecode-compiler.git', description: 'The repository from which to build'),
string(name: 'BRANCH', defaultValue: 'rel/0.105.0', description: 'The repository branch for this build'),
string(name: 'FULL_VERSION', defaultValue: '0.105.0', description: 'Full version in X.Y.Z format'),
string(name: 'FEATURE_VERSION', defaultValue: '0.105', description: 'Feature version in X.Y format'),
string(name: 'BRANCH', defaultValue: 'rel/1.3.0', description: 'The repository branch for this build'),
string(name: 'FULL_VERSION', defaultValue: '1.3.0', description: 'Full version in X.Y.Z format'),
string(name: 'FEATURE_VERSION', defaultValue: '1.3', description: 'Feature version in X.Y format'),
booleanParam(name: 'IS_LATEST', defaultValue: true, description: 'If "true", will also publish to :latest, and :stable tags.'),
]),
disableConcurrentBuilds(),
Expand Down
4 changes: 2 additions & 2 deletions clamav-bytecode-compiler/unstable/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update -y && \
make DESTDIR="/clambc" install && \
ctest -V

FROM registry.hub.docker.com/library/ubuntu:22.04
FROM registry.hub.docker.com/library/ubuntu:23.04

ENV DEBIAN_FRONTEND=noninteractive
ENV CC=clang-16
Expand All @@ -48,6 +48,6 @@ COPY --from=builder "/clambc" "/"
RUN apt-get -y update && \
apt install -y \
python3 \
clang-8 \
clang-16 \
&& \
rm -rf /var/lib/apt/lists/*

0 comments on commit 872f61e

Please sign in to comment.