CI #205
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
# Copyright 2024 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: CI | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '23 8 * * *' # runs daily at a randomly selected time | |
jobs: | |
flake-update: | |
permissions: | |
contents: write | |
uses: ./.github/workflows/flake-update.yml | |
check: | |
uses: ./.github/workflows/check.yml | |
with: | |
ref: flake-update | |
needs: [flake-update] | |
cachix: | |
uses: ./.github/workflows/cachix.yml | |
with: | |
ref: flake-update | |
needs: [flake-update] | |
push: | |
permissions: | |
contents: write | |
uses: ./.github/workflows/push-flake-update.yml | |
needs: [check, cachix] | |
# TODO: try to improve caching. | |
# | |
# We spend a lot of time fetching sources. Caching all of ~/.cache/nix/gitv3 is | |
# not ideal: it is too large (3GiB) and we don't expire individual checkouts. | |
# https://github.com/DeterminateSystems/magic-nix-cache/issues/28 may help. | |
# | |
# The "magic" nix cache hits usage limits: | |
# | |
# 2024-05-18T06:45:19.165515Z ERROR magic_nix_cache::gha: Upload of path '/nix/store/fpq1vaw8vr88a67lc2jspskf2fa7zbvj-emacs-treepy-20230715.2154' failed: GitHub API error: API error (429 Too Many Requests): StructuredApiError { message: "Request was blocked due to exceeding usage of resource 'Count' in namespace ''." } | |
# | |
# This might get better as the cache populates, as long as I don't hit size | |
# limits. |