Disable test suite due to weird build issue

This commit is contained in:
Emil Ernerfeldt 2021-01-17 22:17:24 +01:00
parent a4db3498f6
commit c4cf1632d0
2 changed files with 19 additions and 14 deletions

View file

@ -39,20 +39,22 @@ jobs:
command: check
args: --lib --target wasm32-unknown-unknown
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --lib
# Disabled due to https://github.com/emilk/egui_template/runs/1717053928?check_suite_focus=true
# /usr/bin/ld: cannot find -lxcb-shape
# test:
# name: Test Suite
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: test
# args: --lib
fmt:
name: Rustfmt

View file

@ -21,3 +21,6 @@ persistence = ["eframe/persistence", "serde"] # Enable if you want to persist ap
[profile.release]
opt-level = 2 # fast and small wasm
# [patch.crates-io]
# eframe = { path = "../egui/eframe" }