Skip to content

Commit

Permalink
[ci] Build on ubuntu bionic instead of xenial
Browse files Browse the repository at this point in the history
Xenial went EoL in 2021, and we cannot build new mbedtls versions on it.
  • Loading branch information
tobil4sk committed Jul 3, 2024
1 parent 804f3c2 commit 47d72ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ devcontainer-update-ref:
build-env:
# We specifically use an old distro to build against an old glibc.
# https://repology.org/project/glibc/versions
FROM ubuntu:xenial
FROM ubuntu:bionic
RUN apt-get update \
&& apt-get install -qqy --no-install-recommends \
software-properties-common \
Expand Down Expand Up @@ -216,7 +216,7 @@ extract-package:
SAVE ARTIFACT /tmp/neko neko

test-static-package:
ARG IMAGE=ubuntu:xenial
ARG IMAGE=ubuntu:bionic
FROM $IMAGE
WORKDIR /tmp/neko
COPY +extract-package/neko .
Expand All @@ -234,5 +234,5 @@ test-static-package:
RUN nekotools

test-static-package-all-platforms:
ARG IMAGE=ubuntu:xenial
ARG IMAGE=ubuntu:bionic
BUILD --platform=linux/amd64 --platform=linux/arm64 +test-static-package --IMAGE="$IMAGE"

0 comments on commit 47d72ff

Please sign in to comment.