mirror of https://codeberg.org/topola/topola.git
23 lines
508 B
YAML
23 lines
508 B
YAML
# SPDX-FileCopyrightText: 2024 Topola contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
matrix:
|
|
include:
|
|
- CHANNEL: stable
|
|
FEATURES: disable_contracts,xdg-portal
|
|
- CHANNEL: nightly
|
|
FEATURES: xdg-portal
|
|
|
|
steps:
|
|
build_egui:
|
|
image: rust
|
|
environment:
|
|
RUST_BACKTRACE: 1
|
|
CARGO_TERM_COLOR: always
|
|
commands:
|
|
- rustup default "$CHANNEL"
|
|
- cargo build -p topola-egui --no-default-features --features "$FEATURES"
|
|
when:
|
|
event: [pull_request, push, tag]
|