Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blasting a bunch of builds
Browse files Browse the repository at this point in the history
mtzguido committed Jan 11, 2025

Verified

This commit was signed with the committer’s verified signature.
Byron Sebastian Thiel
1 parent dca19d3 commit d376aad
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ name: F* nightly build

on:
schedule:
- cron: '0 * * * *'
- cron: '*/10 * * * *'
workflow_dispatch:

jobs:
@@ -45,7 +45,7 @@ jobs:
# We push nightly builds to a different repo (same org)
REPO="${{github.repository}}-nightly"
TAG=nightly-$(date -I)
TAG=nightly-$(date -I)-$((RANDOM))
# Create tag
git tag $TAG ${{github.sha}}
2 changes: 1 addition & 1 deletion .scripts/mk-package.sh
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ case $FSTAR_PACKAGE_FORMAT in
TGT="$ARCHIVE.zip"
TGT="$(realpath "$TGT")"
# Github actions runner do not have 'zip'
if wwwhich zip; then
if which zip; then
zip -q -r -9 "$TGT" .
elif which 7z; then
pushd "$PREFIX"

0 comments on commit d376aad

Please sign in to comment.