forked from Sovereign-Labs/sovereign-sdk
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
662 changed files
with
53,231 additions
and
23,721 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# See <https://github.com/BuildJet/cache-delete>. Useful for debugging/solving | ||
# caching issues. To identify the name of the cache key to delete, look for the line | ||
# `Cache restored from key: <cache key>` in the logs of the caching step. | ||
|
||
name: Manually delete a BuildJet cache entry | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
cache_key: | ||
description: "BuildJet cache key to delete" | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
manually-delete-buildjet-cache: | ||
runs-on: buildjet-2vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: buildjet/cache-delete@v1 | ||
with: | ||
cache_key: ${{ inputs.cache_key }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "Pre-release checks" | ||
on: | ||
schedule: | ||
# At 10:00am UTC every Monday. | ||
# See: | ||
# - https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | ||
# - https://crontab.guru/ | ||
- cron: "0 10 * * 1" | ||
# Allow manual triggering: <https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch>. | ||
workflow_dispatch: | ||
# Anytime a PR modifies the list of packages to publish. | ||
pull_request: | ||
paths: | ||
- "packages_to_publish.yml" | ||
|
||
jobs: | ||
check-missing-dependency-versions: | ||
runs-on: buildjet-4vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: ./scripts/check_missing_dependency_versions.sh | ||
shell: bash | ||
working-directory: . |
Oops, something went wrong.