Skip to content

Commit

Permalink
Merge branch 'nightly'
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhurajeev committed Feb 1, 2024
2 parents 6f5ac2f + c9f56b4 commit 9190d2b
Show file tree
Hide file tree
Showing 662 changed files with 53,231 additions and 23,721 deletions.
41 changes: 0 additions & 41 deletions .github/workflows/cleanup_caches.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/delete_cache.yml
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 }}
23 changes: 23 additions & 0 deletions .github/workflows/prerelease_checks.yml
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: .
Loading

0 comments on commit 9190d2b

Please sign in to comment.