Skip to content

Commit f12b20a

Browse files
committed
changse
1 parent 2af7cf2 commit f12b20a

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
container:
20-
image: ${{ fromJSON(inputs.images).ubuntu-latest }}
20+
image: ${{ fromJSON(inputs.images).fedora-latest }}
2121
env:
2222
CFLAGS: -O2 -Wp,-D_FORTIFY_SOURCE=2
2323
LC_ALL: en_US.UTF-8
@@ -77,7 +77,8 @@ jobs:
7777
strategy:
7878
matrix:
7979
image:
80-
- 'gnomeos'
80+
# FIXME: GNOME OS is currently missing polkit-agent-1
81+
# - 'gnomeos'
8182
- 'fedora-latest'
8283
- 'ubuntu-22.04'
8384
- 'ubuntu-latest'

.github/workflows/container.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ jobs:
1515
strategy:
1616
matrix:
1717
image:
18+
# bump the tags to rebuild
1819
- 'gnomeos:2025-11-24.0'
1920
- 'fedora-latest:2025-11-21.11'
2021
- 'ubuntu-latest:2025-11-21.10'
21-
- 'ubuntu-22.04:2025-11-24.11'
22+
- 'ubuntu-22.04:2025-11-24.3'
2223

2324
steps:
2425
- name: Login to GHCR

.github/workflows/containers/ubuntu-22.04.containerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ FROM ubuntu:22.04
77
RUN apt update
88
RUN apt upgrade -y
99

10+
RUN apt install -y software-properties-common
11+
RUN add-apt-repository ppa:flatpak/stable
12+
13+
RUN apt update
14+
RUN apt upgrade -y
15+
1016
# Install dependencies
1117
RUN apt install -y --no-install-recommends \
1218
ca-certificates \

0 commit comments

Comments
 (0)