Skip to content

Update for gtk-4.14 #34

Update for gtk-4.14

Update for gtk-4.14 #34

Workflow file for this run

name: macOS 12
# Dependencies of this package
env:
MACOS_BREW: ${{ 'gtk+3 pango glib glib-networking gobject-introspection pkg-config jq' }}
on:
push:
branches:
- development
- main
pull_request:
branches:
- development
- main
jobs:
# macOS tasks
build-mac-monterey-latest:
runs-on: macos-12.0
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.3.1'
- name: Print Swift version to confirm
run: swift --version
- name: Fetch dependencies for general repository
run: brew install $MACOS_BREW
- name: Checkout SwiftGtk
uses: actions/checkout@v2
with:
path: SwiftGtk
- name: Build SwiftGtk
run: |
cd SwiftGtk
swift build
cd ..
- name: Test SwiftGtk
run: |
cd SwiftGtk
swift test
cd ..
- name: Remove unneeded files and archive artefacts
run: |
cd SwiftGtk
swift package clean
rm -rf .build/repositories
cd ..