summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ghci.yml
blob: 93ad160b76d45c0f8d76c40e8ce52a2890cb7dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
name: GitHub CI

on:
  push:
    branches: [master, ci, coverity_scan]
  pull_request:

jobs:
  build:
    runs-on: ${{ matrix.os }}
    name: build(${{ matrix.msystem || matrix.docker_image || matrix.os }},
      ${{ matrix.cc }}${{ matrix.api && ', ' }}${{ matrix.api }})
    strategy:
      fail-fast: false
      matrix:
        include:
          # Enable distcheck for one build
          - os: ubuntu-latest
            cc: gcc
            do_distc: yes
          # Run Coverity on a clang build; Coverity's gcc causes issues
          - os: ubuntu-latest
            cc: clang
            do_coverity: yes
          # Add a tcc build
          - os: ubuntu-latest
            cc: tcc
            ld: tcc
          # Add docker-build on Alpine
          - os: ubuntu-latest
            cc: gcc
            docker_image: alpine:latest
            shell: '/usr/bin/docker exec dockerciimage sh -e {0}'
            art_reg_skip: 'font_nonunicode'
          # Add docker-build with minimum version of dependencies
          - os: ubuntu-latest
            cc: gcc
            docker_image: oldlibs
            docker_pullprefix: 'ghcr.io/theoneric/libass-containers/'
            shell: '/usr/bin/docker exec dockerciimage sh -e {0}'
            # Crash Tests detect (false?) leaks in Fontconfig, and
            # various regression test fail, assumed due to older deps
            skip_tests: yes
          # MacOS build
          - os: macos-latest
            cc: clang
          # Add a Windows build (MinGW-gcc via MSYS2) with no extras
          - os: windows-2019
            msystem: MINGW32
            cc: gcc
            api: desktop
            shell: 'msys2 {0}'
            package_prefix: mingw-w64-i686
          # Add a best-effort build for UWP apps for Microsoft Store
          - os: windows-2019
            msystem: UCRT64
            cc: gcc
            api: app
            extra_cflags: -DWINAPI_FAMILY=WINAPI_FAMILY_APP -specs=/tmp/windowsapp.specs
            shell: 'msys2 {0}'
            package_prefix: mingw-w64-ucrt-x86_64
            # FIXME: UBSAN triggers on regression/karaoke/357-k-and-kf-desynced.ass
            skip_tests: yes

    defaults:
      run:
        shell: ${{ matrix.shell || 'bash' }}

    env:
      ART_SAMPLES: ext_art-samples

    steps:
      - name: checkout code
        uses: actions/checkout@v3

      - name: download test samples
        uses: actions/checkout@v3
        with:
          repository: libass/libass-tests
          path: ${{ env.ART_SAMPLES }}

      - name: Start Docker
        if: matrix.docker_image
        shell: bash
        run: |
          # Note: Many containers default to the root user
          docker pull "${{ matrix.docker_pullprefix }}${{ matrix.docker_image }}"
          docker create --name dockerciimage \
            -v "/home/runner/work:/home/runner/work" --workdir "$PWD"  \
            --entrypoint "tail" \
            "${{ matrix.docker_pullprefix }}${{ matrix.docker_image }}" \
            "-f" "/dev/null"
          docker start dockerciimage

      - name: Setup MSys2
        uses: msys2/setup-msys2@v2
        if: matrix.msystem
        with:
          msystem: ${{ matrix.msystem }}
          update: false

      - name: install deps
        run: |
          case "${{ matrix.docker_image || matrix.os }}" in
            macos-*)
              #brew update
              # fontconfig, freetype, autoconf and libtool are preinstalled
              # and `brew install` fails if a non-uptodate version is already installed
              #brew upgrade fontconfig freetype autoconf libtool
              brew install automake fribidi harfbuzz nasm
              ;;
            windows-*)
              pre="${{ matrix.package_prefix }}"
              pacman --noconfirm -S \
                      automake autoconf libtool nasm make \
                      $pre-pkg-config $pre-gcc \
                      $pre-fribidi $pre-freetype $pre-harfbuzz $pre-fontconfig \
                      $pre-libpng
              ;;
            alpine:*)
              apk add nasm ${{ matrix.cc }} musl-dev \
                      make automake autoconf libtool pkgconf \
                      fontconfig-dev freetype-dev fribidi-dev harfbuzz-dev \
                      libpng-dev
              ;;
            oldlibs)
              : # Everything is preinstalled
              ;;
            *)
              sudo apt-get update #&& sudo apt-get upgrade
              ubver="$(apt-cache search libubsan | awk '/^libubsan[0-9]* / {print substr($1, 9)}' | sort -rn | head -n1)"
              asver="$(apt-cache search libasan | awk '/^libasan[0-9]* / {print substr($1, 8)}' | sort -rn | head -n1)"
              sudo apt-get install -y --no-install-recommends \
                   autoconf automake make libtool \
                   libfontconfig1-dev libfreetype6-dev libfribidi-dev \
                   libharfbuzz-dev nasm ${{ matrix.cc }} \
                   libpng-dev libubsan"$ubver" libasan"$asver"
              ;;
          esac

      - name: Determine Sanitizer Flags
        id: sanitizer
        run: |
          aflags="-fsanitize=address"
          uflags="-fsanitize=undefined -fsanitize=float-cast-overflow"
          if [ "${{ startsWith(matrix.cc, 'clang') }}" = "true" ] ; then
            # Clang's UBSAN exits with code zero even if issues were found
            # This options will instead force an SIGILL, but remove a report being printed
            # see https://reviews.llvm.org/D35085
            uflags="$uflags -fsanitize-undefined-trap-on-error"
          fi

          # UBSAN: Alpine and MSys2 doesn't ship the UBSAN library,
          #        but when SIGILL'ing the lib is not needed
          # ASAN:  Not supported with musl and in Windows
          case "${{ matrix.docker_image || matrix.os }}" in
            alpine*|windows-*)
              flags="$uflags -fsanitize-undefined-trap-on-error" ;;
            *)
              flags="$aflags $uflags" ;;
          esac

          if [ -n "$flags" ] ; then
            flags="$flags -fno-sanitize-recover=all"
          fi

          if [ "${{ matrix.cc }}" = "tcc" ] || [ "${{ matrix.skip_tests }}" = "yes" ] ; then
            flags=""
          fi

          echo "SANFLAGS=$flags"
          echo "::set-output name=flags::${flags}"

      - name: Customize compiler
        if: matrix.api == 'app' && matrix.cc == 'gcc'
        run: >
          gcc -dumpspecs
          | sed 's/-lmsvcrt/-lucrtapp/g; s/-lkernel32/-lwindowsapp/g;
          s/-ladvapi32//g; s/-lshell32//g; s/-luser32//g'
          > /tmp/windowsapp.specs

      - name: configure
        run: |
          export CC="${{ matrix.cc }}\
            ${{ matrix.extra_cflags && ' ' }}${{ matrix.extra_cflags }}\
            ${{ steps.sanitizer.outputs.flags && ' ' }}${{ steps.sanitizer.outputs.flags }}"
          export LD="${{ matrix.ld }}"
          export ART_SAMPLES="${{ env.ART_SAMPLES }}"

          ./autogen.sh
          ./configure --enable-compare --enable-fuzz

      - name: distcheck
        if: matrix.do_distc == 'yes'
        run: make -j 2 distcheck

      - name: compile
        run: make -j 2

      - name: run tests
        if: matrix.skip_tests != 'yes'
        run: |
          ART_REG_SKIP="${{ matrix.art_reg_skip }}" make -j 1 check


      - name: Coverity scan
        if: >
          matrix.do_coverity == 'yes'
          && github.repository == 'libass/libass'
          && github.event_name != 'pull_request'
        env:
          COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
          PROJECT_NAME: libass/libass
          NOTIFY_EMAIL: none@example.com
          TOOL_URL: https://scan.coverity.com/download/
          UPLOAD_URL: https://scan.coverity.com/builds?project=libass%2Flibass
          SCAN_URL: https://scan.coverity.com
          RES_DIR: cov-int
        run: |
          exit_code=0
          echo "Running Coverity ..."
          # Remove previous build output
          make clean
          # The upstream script is borked and always exits with 1 even on success
          # To get meaningful success/error status we're using our own script
          # but we still want to be informed about upstream script changes
          if curl -s https://scan.coverity.com/scripts/travisci_build_coverity_scan.sh \
              | shasum -a 256 \
              | grep -Eq '^234d71b4a5257a79559e66dd3ba5765576d2af4845da83af4975b77b14ab536b '
          then
             : remote unchanged
          else
            echo "Coverity's travis script changed!"
            exit_code=1
          fi

          # Check if we are within quoata
          quota_res="$(curl -s --form project="$PROJECT_NAME" \
                               --form token="$COVERITY_SCAN_TOKEN" \
                               "$SCAN_URL"/api/upload_permitted)"
          if [ "$?" -ne 0 ] || [ "x$quota_res" = "xAccess denied" ] ; then
            echo "Coverity denied access or did not respond!"
            exit 1
          elif echo "$quota_res" | grep -Eq 'upload_permitted": *true' ; then
            echo "Within Coverity quota."
          else
            echo "Exceeding Coverity quota! Try again later."
            echo "$quota_res" | grep -Eo 'next_upload_permitted_at":[^,}]*'
            exit 0
          fi

          # Download cov tool and make it available
          wget -nv "$TOOL_URL""$(uname)" \
               --post-data "project=$PROJECT_NAME&token=$COVERITY_SCAN_TOKEN" \
               -O cov-analysis-tool.tar.gz
          mkdir cov-analysis-tool
          tar xzf cov-analysis-tool.tar.gz --strip 1 -C cov-analysis-tool
          export PATH="$(pwd)/cov-analysis-tool/bin:$PATH"

          # Coverity Build
          echo "Starting Coverity build..."
          #mkdir "$RES_DIR" # already done by cov-build
          COVERITY_UNSUPPORTED=1 cov-build --dir "$RES_DIR" make -j 2
          cov-import-scm --dir "$RES_DIR" --scm git --log "$RES_DIR/scm_log.txt" 2>&1

          # Submit results to Coverity's server
          tar czf libass.tar.gz "$RES_DIR"
          upstat="$(curl --silent --write-out "\n%{http_code}\n" \
                     --form project="PROJECT_NAME"               \
                     --form token="$COVERITY_SCAN_TOKEN"         \
                     --form email="$NOTIFY_EMAIL"                \
                     --form file=@libass.tar.gz                  \
                     --form version="${{ github.sha }}"          \
                     --form description="GitHubActions CI build" \
                      "$UPLOAD_URL")"
          if [ "$?" -ne 0 ] ; then
            echo "Upload failed (curl error)"
            exit_code=1
          elif echo "$upstat" | tail -n 1 | grep -Eq '^2[0-9]{2}$' ; then
            echo "Upload successful."
          else
            echo "Upload failed (server error)"
            exit_code=1
          fi
          echo "$upstat" | head

          exit $exit_code


      - name: Stop Docker
        if: matrix.docker_image
        shell: bash
        run: |
          docker rm --force dockerciimage