Skip to content

Build and test

Build and test #1739

Workflow file for this run

name: Build and test
# Avoid duplicate builds for pull requests, allow manual trigger.
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
generator:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
# Prefer running on Ubuntu over Dart Docker image
- uses: dart-lang/setup-dart@v1
with:
sdk: 3.0.3
- name: Install ObjectBox C-API
run: ./install.sh
- name: Integration test
run: ./generator/test.sh
# make sure the init script doesn't stop working - it's not something we usually run during normal development
init-script:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: 3.10.4
cache: true
- run: ./tool/init.sh
lib:
strategy:
fail-fast: false # To see all Dart SDKs that fail, also sometimes with more helpful errors.
matrix:
os:
- windows-2022
- macos-13
- ubuntu-22.04
sdk:
# Always include lowest supported version (see sdk key in objectbox and generator
# pubspec.yaml, but may be higher due to dependencies).
- 3.0.3
- 2.19.6
- 2.18.6
runs-on: ${{ matrix.os }}
steps:
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- uses: actions/checkout@v3
- name: Generator Test
working-directory: generator
run: |
../tool/pub.sh get
../tool/pub.sh run test
- name: Install ObjectBox C-API
working-directory: objectbox_test
run: ../install.sh
- name: Library Test
working-directory: objectbox_test
run: |
../tool/pub.sh get
../tool/pub.sh run build_runner build
../tool/pub.sh run test
flutter-integration-test:
strategy:
fail-fast: false
matrix:
os:
- macos-13
- ubuntu-22.04
- windows-2022 # Flutter 2.9 and newer need Visual Studio 2022 to build desktop.
flutter-version:
# Include lowest working version (use lowest tested Dart SDK as a guideline, see lib tests
# above; but may be higher due to dependency conflicts)
# https://docs.flutter.dev/development/tools/sdk/releases lists included Dart SDK.
- 3.10.4
- 3.7.12
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
cache: true
# windows-2022 defaults to Java 8, but Android Plugin requires at least 11.
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- run: echo $PATH
- run: flutter --version
# https://docs.flutter.dev/desktop#additional-linux-requirements
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: ./tool/apt-install.sh ninja-build pkg-config libgtk-3-dev
- run: make integration-test
working-directory: objectbox