2020-06-04 15:04:01 +00:00
|
|
|
name: "Build and populate cache"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2021-09-28 14:47:10 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- master
|
2020-06-04 15:04:01 +00:00
|
|
|
schedule:
|
|
|
|
# rebuild everyday at 2:51
|
|
|
|
# TIP: Choose a random time here so not all repositories are build at once:
|
|
|
|
# https://www.random.org/clock-times/?num=1&earliest=01%3A00&latest=08%3A00&interval=5&format=html&rnd=new
|
|
|
|
- cron: '51 2 * * *'
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
# Set this to notify the global nur package registry that changes are
|
|
|
|
# available.
|
|
|
|
#
|
|
|
|
# The repo name as used in
|
|
|
|
# https://github.com/nix-community/NUR/blob/master/repos.json
|
|
|
|
nurRepo:
|
2020-08-14 12:36:36 +00:00
|
|
|
- <YOUR_REPO_NAME>
|
2020-06-04 15:04:01 +00:00
|
|
|
# Set this to cache your build results in cachix for faster builds
|
|
|
|
# in CI and for everyone who uses your cache.
|
|
|
|
#
|
|
|
|
# Format: Your cachix cache host name without the ".cachix.org" suffix.
|
|
|
|
# Example: mycache (for mycache.cachix.org)
|
|
|
|
#
|
2021-07-19 18:27:59 +00:00
|
|
|
# For this to work, you also need to set the CACHIX_SIGNING_KEY or
|
2021-07-20 12:46:36 +00:00
|
|
|
# CACHIX_AUTH_TOKEN secret in your repository secrets settings in
|
|
|
|
# Github found at
|
|
|
|
# https://github.com/<your_githubname>/nur-packages/settings/secrets
|
2020-06-04 15:04:01 +00:00
|
|
|
cachixName:
|
2020-08-14 12:36:36 +00:00
|
|
|
- <YOUR_CACHIX_NAME>
|
2020-06-04 15:04:01 +00:00
|
|
|
nixPath:
|
|
|
|
- nixpkgs=channel:nixos-unstable
|
|
|
|
- nixpkgs=channel:nixpkgs-unstable
|
2022-09-17 12:32:47 +00:00
|
|
|
- nixpkgs=channel:nixos-22.05
|
2020-06-04 15:04:01 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-07 07:01:58 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-06-04 15:04:01 +00:00
|
|
|
- name: Install nix
|
2022-10-17 07:01:43 +00:00
|
|
|
uses: cachix/install-nix-action@v18
|
2020-06-04 15:04:01 +00:00
|
|
|
with:
|
|
|
|
nix_path: "${{ matrix.nixPath }}"
|
2021-11-05 16:17:07 +00:00
|
|
|
extra_nix_config: |
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
2020-06-04 15:04:01 +00:00
|
|
|
- name: Show nixpkgs version
|
|
|
|
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
|
|
|
|
- name: Setup cachix
|
2022-10-31 07:01:26 +00:00
|
|
|
uses: cachix/cachix-action@v12
|
2021-07-19 19:22:50 +00:00
|
|
|
# Don't replace <YOUR_CACHIX_NAME> here!
|
2020-08-14 12:36:36 +00:00
|
|
|
if: ${{ matrix.cachixName != '<YOUR_CACHIX_NAME>' }}
|
2020-06-04 15:04:01 +00:00
|
|
|
with:
|
|
|
|
name: ${{ matrix.cachixName }}
|
|
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
2021-07-20 12:46:36 +00:00
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
2020-12-03 19:53:17 +00:00
|
|
|
- name: Check evaluation
|
|
|
|
run: |
|
|
|
|
nix-env -f . -qa \* --meta --xml \
|
|
|
|
--allowed-uris https://static.rust-lang.org \
|
|
|
|
--option restrict-eval true \
|
|
|
|
--option allow-import-from-derivation true \
|
|
|
|
--drv-path --show-trace \
|
|
|
|
-I nixpkgs=$(nix-instantiate --find-file nixpkgs) \
|
|
|
|
-I $PWD
|
2020-06-04 15:04:01 +00:00
|
|
|
- name: Build nix packages
|
2021-11-05 16:17:07 +00:00
|
|
|
run: nix shell -f '<nixpkgs>' nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
|
2020-06-04 15:04:01 +00:00
|
|
|
- name: Trigger NUR update
|
2021-07-19 19:22:50 +00:00
|
|
|
# Don't replace <YOUR_REPO_NAME> here!
|
2020-08-14 12:36:36 +00:00
|
|
|
if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }}
|
2020-06-04 15:04:01 +00:00
|
|
|
run: curl -XPOST "https://nur-update.herokuapp.com/update?repo=${{ matrix.nurRepo }}"
|