File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ description: Setup audio under Linux
33runs :
44 using : " composite"
55 steps :
6-
76 - name : Install jack
87 run : |
98 sudo apt-get update
109 sudo apt-get install --yes jackd2
1110 shell : bash
12-
1311 - name : Setup Jack
1412 run : |
1513 echo "Setting up Jack..."
Original file line number Diff line number Diff line change 1+ name : Tune GitHub Actions
2+ description : Tune GitHub Actions
3+ runs :
4+ using : " composite"
5+ steps :
6+ - name : Disable man-db update
7+ if : runner.os == 'Linux'
8+ run : |
9+ echo "set man-db/auto-update false" | sudo debconf-communicate
10+ sudo dpkg-reconfigure man-db
11+ shell : bash
Original file line number Diff line number Diff line change 3030 timeout-minutes : 30
3131 steps :
3232 - uses : actions/checkout@v4
33+ - name : Tune GitHub Actions
34+ uses : ./.github/actions/tune-github-actions
3335 - name : Set up Python ${{ matrix.python-version }}
3436 uses : actions/setup-python@v5
3537 with :
@@ -127,6 +129,8 @@ jobs:
127129 timeout-minutes : 45
128130 steps :
129131 - uses : actions/checkout@v4
132+ - name : Tune GitHub Actions
133+ uses : ./.github/actions/tune-github-actions
130134 - name : Set up Python ${{ matrix.python-version }}
131135 uses : actions/setup-python@v5
132136 with :
You can’t perform that action at this time.
0 commit comments