Skip to content

Commit 6f3d407

Browse files
committed
CI: Fix not available on Ubuntu 20.04 LTS
1 parent c7077c7 commit 6f3d407

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
ARG IMAGE
22
FROM ${IMAGE}
33
ENV DEBIAN_FRONTEND=noninteractive
4+
RUN apt-get update && apt-get install -y software-properties-common && \
5+
add-apt-repository -y ppa:ubuntu-support-team/meson
46
RUN apt-get update && apt-get install -y --no-install-recommends \
57
build-essential \
68
debhelper \

.github/workflows/build_and_release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
with:
3636
context: .github/workflows/
3737
tags: ${{ matrix.image }}:build
38-
# meson >= 0.54.0 is not available in Ubuntu 20.04
39-
build-args: IMAGE=${{ matrix.image }}:22.04
38+
build-args: IMAGE=${{ matrix.image }}:20.04
4039
cache-from: type=gha,scope=${{ matrix.image }}
4140
cache-to: type=gha,scope=${{ matrix.image }},mode=max
4241
load: true

0 commit comments

Comments
 (0)