Compare commits
No commits in common. "14d95994b9162f79a215677622bd1375391db68f" and "8831c56c907ce6f9791ac56c960959f9d1061ce2" have entirely different histories.
14d95994b9
...
8831c56c90
2 changed files with 21 additions and 1 deletions
|
|
@ -3,8 +3,16 @@ name: BotServer CI
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["main"]
|
branches: ["main"]
|
||||||
|
paths:
|
||||||
|
- "botserver/**"
|
||||||
|
- "botlib/**"
|
||||||
|
- ".forgejo/workflows/**"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["main"]
|
branches: ["main"]
|
||||||
|
paths:
|
||||||
|
- "botserver/**"
|
||||||
|
- "botlib/**"
|
||||||
|
- ".forgejo/workflows/**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_BUILD_JOBS: 4
|
CARGO_BUILD_JOBS: 4
|
||||||
|
|
@ -45,6 +53,18 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Cache Cargo registry
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry
|
||||||
|
~/.cargo/git
|
||||||
|
~/.cache/sccache
|
||||||
|
workspace/target
|
||||||
|
key: ${{ runner.os }}-cargo-v2-debug-server-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-cargo-v2-debug-server-
|
||||||
|
${{ runner.os }}-cargo-v2-debug-
|
||||||
|
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 1a2d65c531c93302fa22dad15df5c33a2713160e
|
Subproject commit d4a7d1246b94a7c1543d93f961af926e4412d0e8
|
||||||
Loading…
Add table
Reference in a new issue