Skip to content

Commit

Permalink
Boehm GC version 8.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
carlhoerberg committed Dec 9, 2024
1 parent 0e2b503 commit 0e6537c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
env:
crystal_version: 1.14.0
shards_version: 0.18.0
gc_version: 8.2.6
gc_version: 8.2.8

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
crystal_version: master
shards_version: 0.17.3
gc_version: 8.2.4
gc_version: 8.2.8

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apk add --update --no-cache \
libffi-dev git g++ make automake libtool autoconf curl
# Build libgc
WORKDIR /usr/src/libc
ARG gc_version=8.2.6
ARG gc_version=8.2.8
RUN git clone --depth=1 --single-branch --branch=v${gc_version} https://github.com/ivmai/bdwgc.git . && \
./autogen.sh && \
./configure --disable-debug --disable-shared --enable-large-config --prefix=/usr && \
Expand Down
2 changes: 1 addition & 1 deletion centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN dnf install -y --nodocs --enablerepo=crb \
dnf clean all
# build libgc
WORKDIR /tmp/libgc
ARG gc_version=8.2.6
ARG gc_version=8.2.8
RUN git clone --depth=1 --single-branch --branch=v${gc_version} https://github.com/ivmai/bdwgc.git . && \
./autogen.sh && \
./configure --disable-debug --disable-shared --enable-large-config --prefix=/usr && \
Expand Down
2 changes: 1 addition & 1 deletion debian-static/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && \
apt-get install -y git gcc g++ make autoconf automake libtool
# build libgc
WORKDIR /tmp/libgc
ARG gc_version=8.2.4
ARG gc_version=8.2.8
RUN git clone --depth=1 --single-branch --branch=v${gc_version} https://github.com/ivmai/bdwgc.git . && \
./autogen.sh && \
./configure --disable-debug --disable-shared --enable-large-config --prefix=/usr && \
Expand Down
2 changes: 1 addition & 1 deletion debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN apt-get update && \
autoconf automake libtool llvm-$llvm_version-dev libffi-dev
# build libgc
WORKDIR /tmp/libgc
ARG gc_version=8.2.4
ARG gc_version=8.2.8
RUN git clone --depth=1 --single-branch --branch=v${gc_version} https://github.com/ivmai/bdwgc.git . && \
./autogen.sh && \
./configure --disable-debug --disable-shared --enable-large-config --prefix=/usr && \
Expand Down
2 changes: 1 addition & 1 deletion fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN dnf install -y --nodocs --repo=fedora,updates \
dnf clean all
# build libgc
WORKDIR /usr/src/libgc
ARG gc_version=8.2.4
ARG gc_version=8.2.8
RUN git clone --depth=1 --single-branch --branch=v${gc_version} https://github.com/ivmai/bdwgc.git . && \
./autogen.sh && \
./configure --disable-debug --disable-shared --enable-large-config --prefix=/usr --disable-dependency-tracking && \
Expand Down
2 changes: 1 addition & 1 deletion pkgs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && \
&& gem install fpm
# build libgc
WORKDIR /tmp/libgc
ARG gc_version=8.2.2
ARG gc_version=8.2.8
RUN git clone --depth=1 --single-branch --branch=v${gc_version} https://github.com/ivmai/bdwgc.git . && \
./autogen.sh && \
./configure --disable-debug --disable-shared --enable-large-config --prefix=/usr && \
Expand Down

0 comments on commit 0e6537c

Please sign in to comment.