Skip to content

Commit 09ce6ae

Browse files
committed
ci: trigger on next branch
1 parent 64aa913 commit 09ce6ae

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: CI
33
on:
44
push:
55
tags: ["v*"]
6-
branches: ["main"]
6+
branches: ["next"]
77
pull_request:
8-
branches: ["main"]
8+
branches: ["next"]
99
workflow_dispatch:
1010

1111
concurrency:

Cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,13 @@ debug = 1
3333
lto = "fat"
3434
strip = true
3535
incremental = false
36-
codegen-units = 1
36+
codegen-units = 1
37+
38+
[profile.fast-release]
39+
inherits = "release"
40+
#opt-level = "z"
41+
debug = 1
42+
#lto = "fat"
43+
strip = true
44+
#incremental = false
45+
#codegen-units = 1

justfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ run:
55
test:
66
cargo test -- --ignored
77

8+
fast-release:
9+
cross build --profile fast-release
10+
811
server:
912
cargo run --package tuic-server --bin tuic-server -- -c ./config.toml

0 commit comments

Comments
 (0)