File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
actions/install-linux-deps Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ inputs:
33
33
description : Install xkb (libxkbcommon-dev)
34
34
required : false
35
35
default : " false"
36
+ x264 :
37
+ description : Install x264 (libx264-dev)
38
+ required : false
39
+ default : " false"
36
40
runs :
37
41
using : composite
38
42
steps :
47
51
${{ fromJSON(inputs.udev) && 'libudev-dev' || '' }}
48
52
${{ fromJSON(inputs.wayland) && 'libwayland-dev' || '' }}
49
53
${{ fromJSON(inputs.xkb) && 'libxkbcommon-dev' || '' }}
54
+ ${{ fromJSON(inputs.x264) && 'libx264-164 libx264-dev' || '' }}
Original file line number Diff line number Diff line change 84
84
with :
85
85
wayland : true
86
86
xkb : true
87
+ x264 : true
87
88
- name : CI job
88
89
# See tools/ci/src/main.rs for the commands this runs
89
90
run : cargo run -p ci -- lints
@@ -374,6 +375,7 @@ jobs:
374
375
with :
375
376
wayland : true
376
377
xkb : true
378
+ x264 : true
377
379
- name : Build and check doc
378
380
# See tools/ci/src/main.rs for the commands this runs
379
381
run : cargo run -p ci -- doc
You can’t perform that action at this time.
0 commit comments