mirror of https://codeberg.org/topola/topola.git
ci: remove file inclusions and exclusions
Some PRs don't seem to not run some of the CI steps, and this may be the cause. The `-j4` flag should be sufficient to avoid straining Codeberg CI.
This commit is contained in:
parent
d3e59b0d5a
commit
c7a5da8b1a
|
|
@ -20,21 +20,6 @@ steps:
|
|||
- cargo build -j4 -p topola-cli --no-default-features --features "$FEATURES" --
|
||||
when:
|
||||
event: [pull_request, push, tag]
|
||||
path:
|
||||
include:
|
||||
- '.woodpecker/*.yaml'
|
||||
- '*.toml'
|
||||
- 'crates/**'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'examples/**'
|
||||
exclude:
|
||||
- 'assets/**'
|
||||
- 'LICENSES/**'
|
||||
- 'locales/**'
|
||||
- '*.md'
|
||||
ignore_message: '[ALL]'
|
||||
on_empty: false
|
||||
|
||||
# Testing is a step instead of a separate flow to reduce Codeberg's CI usage.
|
||||
test:
|
||||
|
|
@ -49,21 +34,6 @@ steps:
|
|||
event: [pull_request, push, tag]
|
||||
# Only run tests for stable channel to avoid straining Codeberg's CI.
|
||||
evaluate: 'CHANNEL == "stable"'
|
||||
path:
|
||||
include:
|
||||
- '.woodpecker/*.yaml'
|
||||
- '*.toml'
|
||||
- 'crates/**'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'examples/**'
|
||||
exclude:
|
||||
- 'assets/**'
|
||||
- 'LICENSES/**'
|
||||
- 'locales/**'
|
||||
- '*.md'
|
||||
ignore_message: '[ALL]'
|
||||
on_empty: false
|
||||
|
||||
# Step instead of a separate flow to reduce Codeberg's CI usage.
|
||||
build_egui:
|
||||
|
|
@ -76,21 +46,6 @@ steps:
|
|||
- cargo build -j4 -p topola-egui --no-default-features --features "$FEATURES,xdg-portal"
|
||||
when:
|
||||
event: [pull_request, push, tag]
|
||||
path:
|
||||
include:
|
||||
- '.woodpecker/*.yaml'
|
||||
- '*.toml'
|
||||
- 'crates/**'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'examples/**'
|
||||
exclude:
|
||||
- 'assets/**'
|
||||
- 'LICENSES/**'
|
||||
- 'locales/**'
|
||||
- '*.md'
|
||||
ignore_message: '[ALL]'
|
||||
on_empty: false
|
||||
|
||||
# Step instead of a separate flow to reduce Codeberg's CI usage.
|
||||
build_wasm:
|
||||
|
|
@ -107,18 +62,3 @@ steps:
|
|||
- trunk build
|
||||
when:
|
||||
event: [pull_request, push, tag]
|
||||
path:
|
||||
include:
|
||||
- '.woodpecker/*.yaml'
|
||||
- '*.toml'
|
||||
- 'crates/**'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'examples/**'
|
||||
exclude:
|
||||
- 'assets/**'
|
||||
- 'LICENSES/**'
|
||||
- 'locales/**'
|
||||
- '*.md'
|
||||
ignore_message: '[ALL]'
|
||||
on_empty: false
|
||||
|
|
|
|||
|
|
@ -13,18 +13,3 @@ steps:
|
|||
- cargo fmt --all -- --check
|
||||
when:
|
||||
event: [pull_request, push, tag]
|
||||
path:
|
||||
include:
|
||||
- '.woodpecker/*.yaml'
|
||||
- '*.toml'
|
||||
- 'crates/**'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'examples/**'
|
||||
exclude:
|
||||
- 'assets/**'
|
||||
- 'LICENSES/**'
|
||||
- 'locales/**'
|
||||
- '*.md'
|
||||
ignore_message: '[ALL]'
|
||||
on_empty: false
|
||||
|
|
|
|||
Loading…
Reference in New Issue