Skip to content

Commit 671afc0

Browse files
committed
f
1 parent 2ced246 commit 671afc0

1 file changed

Lines changed: 5 additions & 11 deletions

File tree

.github/workflows/CI.yaml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
image: fedora:44
1616

1717
steps:
18+
- name: Install host dependencies
19+
run: |
20+
dnf -y update
21+
dnf -y install flatpak mutter flatpak-builder foundry git
22+
1823
- uses: actions/checkout@v3
1924
with:
2025
submodules: recursive
@@ -24,33 +29,22 @@ jobs:
2429
node-version: 20
2530
cache: "npm"
2631

27-
- name: Install host dependencies
28-
run: |
29-
dnf -y update
30-
dnf -y install flatpak mutter flatpak-builder foundry
31-
3232
# Restore caches
3333
- name: Restore Flatpak dependencies
3434
uses: actions/cache/restore@v3
3535
with:
3636
path: ~/.local/share/flatpak
3737
key: flatpak-deps-${{ runner.os }}
38-
restore-keys: |
39-
${{ runner.os }}-flatpak-dependencies-
4038
- name: Restore .flatpak-builder
4139
uses: actions/cache/restore@v3
4240
with:
4341
path: .flatpak-builder
4442
key: flatpak-builder-${{ runner.os }}
45-
restore-keys: |
46-
${{ runner.os }}-flatpak-builder-
4743
- name: Restore .foundry
4844
uses: actions/cache/restore@v3
4945
with:
5046
path: .foundry
5147
key: foundry-${{ runner.os }}
52-
restore-keys: |
53-
${{ runner.os }}-foundry-
5448

5549
- run: mutter --wayland --no-x11 --headless --wayland-display=wayland-0 --virtual-monitor 1280x720 > /tmp/mutter.log 2>&1 &
5650
- run: make ci

0 commit comments

Comments
 (0)