Skip to content

Commit 4444871

Browse files
committed
Fix building of GtkCodeGen in Linux and macOS CI workflows
1 parent 86b41f8 commit 4444871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/swift-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
sudo apt install -y libgtk-4-dev clang
1818
- name: Build
1919
run: |
20+
swift build --target GtkCodeGen && \
2021
cd Examples && \
2122
swift build --target SwiftCrossUI && \
2223
swift build --target GtkBackend && \
@@ -27,7 +28,6 @@ jobs:
2728
swift build --target GreetingGeneratorExample && \
2829
swift build --target NavigationExample && \
2930
swift build --target SplitExample && \
30-
swift build --target GtkCodeGen && \
3131
swift build --target GtkExample
3232
- name: Test
3333
run: swift test

.github/workflows/swift-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
run: sed -i '' 's/-I..includedir.//g' /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/13/libffi.pc
1919
- name: Build
2020
run: |
21+
swift build --target GtkCodeGen && \
2122
cd Examples && \
2223
swift build --target SwiftCrossUI && \
2324
swift build --target GtkBackend && \
@@ -28,7 +29,6 @@ jobs:
2829
swift build --target GreetingGeneratorExample && \
2930
swift build --target NavigationExample && \
3031
swift build --target SplitExample && \
31-
swift build --target GtkCodeGen && \
3232
swift build --target GtkExample
3333
- name: Test
3434
run: swift test

0 commit comments

Comments
 (0)