Update cachix cache for development environment #601
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
name: "Update cachix cache for development environment" | |
on: | |
push: | |
branches: [ master, main ] | |
schedule: | |
- cron: '30 0 * * *' | |
permissions: | |
contents: read | |
jobs: | |
r-update-cachix: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: rstats-on-nix | |
# If you chose signing key for write access | |
# signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
# If you chose API tokens for write access OR if you have a private cache | |
authToken: '${{ secrets.CACHIX_AUTH }}' | |
- run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
nix-build --argstr system x86_64-linux | |
nix-build --argstr system aarch64-linux | |
else | |
nix-build | |
fi | |
- run: nix-store -qR --include-outputs $(nix-instantiate default.nix) | cachix push rstats-on-nix | |
- run: nix-shell --run "echo OK" |