Skip to content

Commit c2f6a1f

Browse files
committed
add weekly run with no-cache
1 parent c3149ce commit c2f6a1f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/weekly.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
schedule:
3+
- cron: '0 0 * * 5'
4+
workflow_dispatch:
5+
6+
name: Check
7+
8+
env:
9+
CARGO_NET_RETRY: 3
10+
CARGO_HTTP_CHECK_REVOKE: false
11+
12+
jobs:
13+
weekly:
14+
name: Check All Targets - No Cache
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- uses: ./.github/actions/setup-rust
19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v1
21+
- name: Build xtask
22+
run: cargo build -p xtask
23+
- name: Build Docker image
24+
id: build-docker-image
25+
run: cargo xtask build-docker-image -v --no-cache --from-ci --tag weekly

0 commit comments

Comments
 (0)