Skip to content

Commit a52b7ef

Browse files
committed
Installs libgd dependency for Linux builds
Adds a step to the Linux CI workflow to install the `libgd-dev` package. This resolves a missing dependency issue preventing the build from completing successfully on Linux.
1 parent bd2ccca commit a52b7ef

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/linux.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ jobs:
88
container: swift:6.2.0
99
steps:
1010
- uses: actions/checkout@v4
11+
12+
- name: Install libgd
13+
run: apt-get update && apt-get install -y libgd-dev
14+
1115
- name: Build
1216
run: swift build -v
17+
1318
- name: Test
1419
run: swift test -v

0 commit comments

Comments
 (0)