Skip to content

Commit 1d096b2

Browse files
Merge pull request #2875 from stefannikolei/sn/fix/build
Install libgdiplus on ubuntu
2 parents e08651b + eff8eee commit 1d096b2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373

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

7979
- name: Git Config

.github/workflows/code-coverage.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
runs-on: ${{matrix.options.os}}
1818

1919
steps:
20+
21+
- name: Install libgdi+, which is required for tests running on ubuntu
22+
if: ${{ contains(matrix.options.os, 'ubuntu') }}
23+
run: sudo apt-get -y install libgdiplus libgif-dev libglib2.0-dev libcairo2-dev libtiff-dev libexif-dev
24+
2025
- name: Git Config
2126
shell: bash
2227
run: |

0 commit comments

Comments
 (0)