mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Build & Deploy
|
|
|
|
on:
|
|
# We do not use a .lock file, as maplibre is a library. Therefore, build could potentially fail if new updates
|
|
# to dependencies are pushed. By building maplibre scheduled we get to know that.
|
|
schedule:
|
|
- cron: '0 3 * * 5' # Run "At 03:00 on Friday"
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
run-check:
|
|
uses: ./.github/workflows/run-checks.yml
|
|
run-benchmarks:
|
|
uses: ./.github/workflows/run-benchmarks.yml
|
|
run-tests:
|
|
uses: ./.github/workflows/run-tests.yml
|
|
build-deploy-docs:
|
|
uses: ./.github/workflows/build-deploy-docs.yml
|
|
with:
|
|
deploy: true
|
|
secrets: inherit
|
|
library-android:
|
|
uses: ./.github/workflows/library-android.yml
|
|
library-web:
|
|
uses: ./.github/workflows/library-web.yml
|
|
with:
|
|
name: maplibre-rs-demo-webgl
|
|
webgl: true
|
|
multithreading: false
|
|
deploy: true
|
|
secrets: inherit
|
|
library-apple:
|
|
uses: ./.github/workflows/library-apple.yml
|
|
demo-linux:
|
|
uses: ./.github/workflows/demo-linux.yml
|
|
demo-windows:
|
|
uses: ./.github/workflows/demo-windows.yml
|
|
demo-macos:
|
|
uses: ./.github/workflows/demo-macos.yml
|
|
secrets: inherit
|
|
|