Browse Source

Merge pull request #2875 from stefannikolei/sn/fix/build

Install libgdiplus on ubuntu
pull/2879/head
James Jackson-South 1 year ago
committed by GitHub
parent
commit
1d096b2270
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/build-and-test.yml
  2. 5
      .github/workflows/code-coverage.yml

2
.github/workflows/build-and-test.yml

@ -73,7 +73,7 @@ jobs:
steps:
- name: Install libgdi+, which is required for tests running on ubuntu
if: ${{ matrix.options.os == 'buildjet-4vcpu-ubuntu-2204-arm' }}
if: ${{ contains(matrix.options.os, 'ubuntu') }}
run: sudo apt-get -y install libgdiplus libgif-dev libglib2.0-dev libcairo2-dev libtiff-dev libexif-dev
- name: Git Config

5
.github/workflows/code-coverage.yml

@ -17,6 +17,11 @@ jobs:
runs-on: ${{matrix.options.os}}
steps:
- name: Install libgdi+, which is required for tests running on ubuntu
if: ${{ contains(matrix.options.os, 'ubuntu') }}
run: sudo apt-get -y install libgdiplus libgif-dev libglib2.0-dev libcairo2-dev libtiff-dev libexif-dev
- name: Git Config
shell: bash
run: |

Loading…
Cancel
Save