Skip to content

GitHub Actions updates #1841

GitHub Actions updates

GitHub Actions updates #1841

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
# Minimal access by default
permissions:
contents: read
jobs:
generator:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# Prefer running on Ubuntu over Dart Docker image
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3 # v1.6.2
with:
sdk: 3.3.0
- name: Install ObjectBox C library
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # v2.16.0
with:
flutter-version: 3.19.1
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.3.0
- 3.2.3
- 2.18.6
runs-on: ${{ matrix.os }}
steps:
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3 # v1.6.2
with:
sdk: ${{ matrix.sdk }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Generator Test
working-directory: generator
run: |
../tool/pub.sh get
../tool/pub.sh run test
- name: Install ObjectBox C library
working-directory: objectbox_test
run: ../install.sh
- name: Library Test
working-directory: objectbox_test
# Set concurrency=1 to run only one test suite (== test file) at a time to make it easier to
# attribute native logs. Note that on GitHub Actions this currently makes no difference as
# Dart defaults to concurrency=1.
# Run again with OBX_IN_MEMORY=true using in-memory database.
run: |
../tool/pub.sh get
../tool/pub.sh run build_runner build
../tool/pub.sh run test --concurrency=1
export OBX_IN_MEMORY=true
../tool/pub.sh run test --concurrency=1
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.19.1
- 3.7.12
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # v2.16.0
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@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
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