Skip to content

Commit 88f3173

Browse files
committed
maybe?
1 parent ff7d441 commit 88f3173

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/actions/install-linux-deps/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ inputs:
3333
description: Install xkb (libxkbcommon-dev)
3434
required: false
3535
default: "false"
36+
x264:
37+
description: Install x264 (libx264-dev)
38+
required: false
39+
default: "false"
3640
runs:
3741
using: composite
3842
steps:
@@ -47,3 +51,4 @@ runs:
4751
${{ fromJSON(inputs.udev) && 'libudev-dev' || '' }}
4852
${{ fromJSON(inputs.wayland) && 'libwayland-dev' || '' }}
4953
${{ fromJSON(inputs.xkb) && 'libxkbcommon-dev' || '' }}
54+
${{ fromJSON(inputs.x264) && 'libx264-164 libx264-dev' || '' }}

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
with:
8585
wayland: true
8686
xkb: true
87+
x264: true
8788
- name: CI job
8889
# See tools/ci/src/main.rs for the commands this runs
8990
run: cargo run -p ci -- lints
@@ -374,6 +375,7 @@ jobs:
374375
with:
375376
wayland: true
376377
xkb: true
378+
x264: true
377379
- name: Build and check doc
378380
# See tools/ci/src/main.rs for the commands this runs
379381
run: cargo run -p ci -- doc

0 commit comments

Comments
 (0)