Build on MacOS #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: Build example | |
on: [push] | |
jobs: | |
windows: | |
runs-on: windows-2022 | |
env: | |
# Workaround for https://gitlab.kitware.com/cmake/cmake/-/issues/25936 | |
TRANSMISSION_PREFIX: ${{ github.workspace }}/transmission-prefix | |
VCPKG_MANIFEST_DIR: ${{ github.workspace }}/example | |
defaults: | |
run: | |
working-directory: ./example | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgDirectory: ${{ github.workspace }}/example/vcpkg | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter build windows | |
linux: | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
working-directory: ./example | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y ninja-build libgtk-3-dev libcurl4-openssl-dev | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter build linux | |
macos: | |
runs-on: macos-14 | |
defaults: | |
run: | |
working-directory: ./example | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: | | |
brew install ninja | |
- name: Set up vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgDirectory: ${{ github.workspace }}/example/vcpkg | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter build macos | |
android: | |
runs-on: ubuntu-24.04 | |
env: | |
VCPKG_MANIFEST_DIR: ${{ github.workspace }}/example | |
defaults: | |
run: | |
working-directory: ./example | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y ninja-build | |
- name: Set up vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgDirectory: ${{ github.workspace }}/example/vcpkg | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter build apk |