Skip to content

Commit

Permalink
action: run release test daily
Browse files Browse the repository at this point in the history
So that if anything breaks, we'd know it early instead of having to find
out upon tagging a new release.

Signed-off-by: Peng Tao <[email protected]>
  • Loading branch information
bergwolf committed Mar 11, 2022
1 parent 552e471 commit d9eff66
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
pull_request:
branches: [master]
schedule:
# Run daily sanity check at 00:08 clock UTC
- cron: "8 0 * * *"
# Run daily sanity check at 23:08 clock UTC
- cron: "8 23 * * *"

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+*
schedule:
# Run daily sanity check at 22:08 clock UTC
- cron: "8 22 * * *"

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -96,6 +99,7 @@ jobs:
name: nydus-artifacts
path: nydus-static
- name: upload artifacts
if: ${{ github.event_name == 'push' }}
run: |
tag=$(echo $GITHUB_REF | cut -d/ -f3-)
tarball="nydus-static-$tag-x86_64.tgz"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

![CI](https://github.com/dragonflyoss/image-service/actions/workflows/ci.yml/badge.svg?event=schedule)
![Image Conversion](https://github.com/dragonflyoss/image-service/actions/workflows/convert.yml/badge.svg?event=schedule)
![Release Test Daily](https://github.com/dragonflyoss/image-service/actions/workflows/release.yml/badge.svg?event=schedule)

The nydus project implements a user space filesystem on top of a container image format that improves over the current OCI image specification, in terms of container launching speed, image space, and network bandwidth efficiency, as well as data integrity.

Expand Down

0 comments on commit d9eff66

Please sign in to comment.