summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOneric <oneric@oneric.stub>2021-12-15 23:28:52 +0100
committerOneric <oneric@oneric.stub>2021-12-18 21:47:27 +0100
commite3a9d20a2651f0e3286e2872dfb8bb2fde72d617 (patch)
treeaca87a2818d3a114d77a85c1295aeaa2db2539b7
parenta60af80a49bc0998f0cd9a5a26f229ec06e1bf7f (diff)
downloadlibass-e3a9d20a2651f0e3286e2872dfb8bb2fde72d617.tar.bz2
libass-e3a9d20a2651f0e3286e2872dfb8bb2fde72d617.tar.xz
ci/gha: cosmetic touchups
Make build-config comments more consistent and also list already installed deps for apt, but avoid installing additional recommended packages
-rw-r--r--.github/workflows/ghci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ghci.yml b/.github/workflows/ghci.yml
index a2c01ab..0f08747 100644
--- a/.github/workflows/ghci.yml
+++ b/.github/workflows/ghci.yml
@@ -31,12 +31,12 @@ jobs:
- os: ubuntu-latest
cc: tcc
ld: tcc
- # Build in an Alpine Docker image
+ # Add docker-build on Alpine
- os: ubuntu-latest
cc: gcc
docker_image: alpine:latest
shell: '/usr/bin/docker exec dockerciimage sh -e {0}'
- # Add an additional Windows build (MinGW-gcc via MSYS2) with no extras
+ # Add a Windows build (MinGW-gcc via MSYS2) with no extras
- os: windows-2019
msystem: MINGW32
cc: gcc
@@ -102,7 +102,8 @@ jobs:
;;
*)
sudo apt-get update #&& sudo apt-get upgrade
- sudo apt-get install -y \
+ sudo apt-get install -y --no-install-recommends \
+ autoconf automake make libtool \
libfontconfig1-dev libfreetype6-dev libfribidi-dev \
libharfbuzz-dev nasm ${{ matrix.cc }}
;;