ci: add egui and sdl2 build tests

This commit is contained in:
Mikolaj Wielgus 2024-05-25 17:41:07 +02:00
parent a757576fe3
commit 2cb4c5d5f1
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
matrix:
RUST: [nightly]
steps:
build_egui:
image: rust
environment: [CARGO_TERM_COLOR=always]
commands:
- rustup default $RUST
- cargo build --features "egui" --bin "topola-egui"

View File

@ -0,0 +1,10 @@
matrix:
RUST: [nightly]
steps:
build_sdl2:
image: rust
environment: [CARGO_TERM_COLOR=always]
commands:
- rustup default $RUST
- cargo build --features "sdl2" --bin "topola-sdl2-demo"