mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-08-31 20:04:43 +08:00
27 lines
512 B
YAML
27 lines
512 B
YAML
matrix:
|
|
# Note that gcc 9 and earlier aren't supported due to using --std=c++2a
|
|
# instead of --std=c++20
|
|
platform:
|
|
- debian11
|
|
- ubuntu2204
|
|
- macos
|
|
- macos-arm64
|
|
- windows
|
|
bazel:
|
|
#- 6.x -> Build fails with bazel 6.x
|
|
- 7.x
|
|
- 8.x
|
|
tasks:
|
|
verify_targets:
|
|
name: Build and test.
|
|
platform: ${{ platform }}
|
|
bazel: ${{ bazel }}
|
|
build_targets:
|
|
- '@ftxui//:ftxui'
|
|
- '@ftxui//:screen'
|
|
- '@ftxui//:dom'
|
|
- '@ftxui//:component'
|
|
test_targets:
|
|
- '@ftxui//:tests'
|
|
|