Skip to content

Commit ab310fb

Browse files
committed
[ci] Update mold version in build toolchain.
Hopefully this will fix a segfault in linking during java tests. Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
1 parent 1281f5c commit ab310fb

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Build Compiler
99
runs-on: [self-hosted, skylake40]
1010
container:
11-
image: ghcr.io/feldera/feldera-dev:sha-adccd0011c9ab1bb2c4aaba5bc765a4491584ee1
11+
image: ghcr.io/feldera/feldera-dev:sha-16392983db90d797040b46489b56399895516720
1212
options: --user=ubuntu
1313
steps:
1414
- name: Checkout repository

.github/workflows/build-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ${{ matrix.runner }}
3030

3131
container:
32-
image: ghcr.io/feldera/feldera-dev:sha-adccd0011c9ab1bb2c4aaba5bc765a4491584ee1
32+
image: ghcr.io/feldera/feldera-dev:sha-16392983db90d797040b46489b56399895516720
3333
options: --user=ubuntu --privileged
3434
volumes:
3535
- /sccache:/sccache

.github/workflows/test-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.runner }}
1515

1616
container:
17-
image: ghcr.io/feldera/feldera-dev:sha-289af12eaf6595b216bbeb5ace0c9b860f725b45
17+
image: ghcr.io/feldera/feldera-dev:sha-16392983db90d797040b46489b56399895516720
1818
options: --user=ubuntu
1919
steps:
2020
- name: Checkout repository

deploy/build.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ RUN curl -fsSL https://bun.sh/install | bash -s "bun-v1.2.2"
9191

9292
# The download URL for mold uses x86_64/aarch64 whereas dpkg --print-architecture says amd64/arm64
9393
RUN arch=`dpkg --print-architecture | sed "s/arm64/aarch64/g" | sed "s/amd64/x86_64/g"`; \
94-
cd /home/ubuntu && curl -LO https://github.com/rui314/mold/releases/download/v2.32.1/mold-2.32.1-$arch-linux.tar.gz \
95-
&& tar -xzvf mold-2.32.1-$arch-linux.tar.gz \
96-
&& mv mold-2.32.1-$arch-linux /home/ubuntu/mold \
97-
&& rm mold-2.32.1-$arch-linux.tar.gz
94+
cd /home/ubuntu && curl -LO https://github.com/rui314/mold/releases/download/v2.40.1/mold-2.40.1-$arch-linux.tar.gz \
95+
&& tar -xzvf mold-2.40.1-$arch-linux.tar.gz \
96+
&& mv mold-2.40.1-$arch-linux /home/ubuntu/mold \
97+
&& rm mold-2.40.1-$arch-linux.tar.gz
9898

9999
# Install sccache
100100
RUN arch=`dpkg --print-architecture | sed "s/arm64/aarch64/g" | sed "s/amd64/x86_64/g"`; \

0 commit comments

Comments
 (0)