Note updated Swift 5.7 requirement. #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu 22.04 | |
# Dependencies of this package | |
env: | |
UBUNTU_APT: ${{ 'libgtk-3-dev gir1.2-gtk-3.0 gir1.2-gtksource-3.0 libcogl-pango-dev libcogl-path-dev libcogl-dev libpango1.0-dev gir1.2-pango-1.0 libgdk-pixbuf2.0-dev gir1.2-gdkpixbuf-2.0 libgraphene-1.0-dev gir1.2-graphene-1.0 libglib2.0-dev glib-networking gobject-introspection libgirepository1.0-dev libxml2-dev jq' }} | |
on: | |
push: | |
branches: | |
- monorepo-development | |
- monorepo | |
- development | |
- main | |
pull_request: | |
branches: | |
- monorepo-development | |
- monorepo | |
- development | |
- main | |
jobs: | |
# Ubuntu 22.04 tasks | |
build-ubuntu-22_04-swift-latest: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: YOCKOW/Action-setup-swift@v1 | |
with: | |
swift-version: '5.7.3' | |
- name: Print Swift version to confirm | |
run: swift --version | |
- name: Fetch dependencies for general repository | |
run: sudo apt-get install $UBUNTU_APT | |
- name: Checkout SwiftGtk | |
uses: actions/checkout@v2 | |
with: | |
path: SwiftGtk | |
- name: Build SwiftGtk | |
run: | | |
cd SwiftGtk | |
swift build | |
cd .. | |
- name: Remove unneeded files and archive artefacts | |
run: | | |
cd SwiftGtk | |
swift package clean | |
rm -rf .build/repositories | |
cd .. |