Skip to content

Commit

Permalink
Don't use the Rust cache for daily builds. (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjyar authored Sep 12, 2023
1 parent ef05e0f commit 8ac1700
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Daily runs
on:
schedule:
- cron: "0 14 * * *" # Daily at 2pm UTC
workflow_dispatch: {}

jobs:
test:
Expand Down Expand Up @@ -36,7 +37,8 @@ jobs:
echo "SCCACHE_BUCKET=sccache-rust" >> $GITHUB_ENV
echo "SCCACHE_S3_USE_SSL=true" >> $GITHUB_ENV
echo "SCCACHE_REGION=us-west-2" >> $GITHUB_ENV
- uses: Swatinem/rust-cache@v2
# This causes disk full errors.
# - uses: Swatinem/rust-cache@v2
- run: cargo test --features beta
env:
IRONCORE_ENV: stage

0 comments on commit 8ac1700

Please sign in to comment.