This commit is contained in:
parent
6fb8063a5b
commit
6fdf2b1fd1
1 changed files with 9 additions and 2 deletions
|
|
@ -50,8 +50,15 @@ jobs:
|
|||
for m in botapp botdevice bottest botui botbook botmodels botplugin bottemplates; do
|
||||
grep -v "\"$m\"" Cargo.toml > /tmp/c.toml && mv /tmp/c.toml Cargo.toml
|
||||
done
|
||||
# Ensure target dir exists
|
||||
mkdir -p target
|
||||
# Ensure target dir exists (use persistent location for sccache)
|
||||
mkdir -p /opt/gbo/data/botserver/target
|
||||
|
||||
- name: Cache sccache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.cache/sccache
|
||||
key: sccache-botserver-${{ github.sha }}
|
||||
restore-keys: sccache-botserver-
|
||||
|
||||
- name: Install system dependencies
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue