mirror of https://codeberg.org/topola/topola.git
ci: add egui and sdl2 build tests
This commit is contained in:
parent
a757576fe3
commit
2cb4c5d5f1
|
|
@ -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"
|
||||||
|
|
@ -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"
|
||||||
Loading…
Reference in New Issue