Use lib from other #31
Workflow file for this run
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 Dart Shared Library | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
include: | |
- os: windows-latest | |
postfix: win | |
- os: ubuntu-latest | |
postfix: linux | |
- os: macos-latest | |
postfix: macos-x64 | |
env: | |
DEPOT_TOOLS_WIN_TOOLCHAIN: 0 | |
continue-on-error: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Install dependencies | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get install libegl1-mesa-dev | |
fi | |
shell: bash | |
- run: dart pub get | |
working-directory: ./scripts/build_helpers | |
- run: dart pub get | |
working-directory: ./examples/realtime_example/dart | |
- run: dart pub get | |
working-directory: ./examples/simple_example_ffi | |
- name: Build Dart | |
run: dart ./scripts/build_helpers/bin/build_dart.dart -v | |
- uses: threeal/[email protected] | |
- name: Build Shared Library | |
run: cmake --build build --config release | |
- name: Assemble artifacts | |
run: dart ./scripts/build_helpers/bin/assemble_artifacts.dart | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: lib-${{ matrix.postfix }} | |
path: ./artifacts | |